view src/testdir/test_ex_equal.vim @ 30457:7ab65e398be7 v9.0.0564

patch 9.0.0564: a few tests keep failing on MacOS M1 Commit: https://github.com/vim/vim/commit/0056ca71374feadf6bad27f5b66eaa18b6f7dad7 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Sep 23 21:26:39 2022 +0100 patch 9.0.0564: a few tests keep failing on MacOS M1 Problem: A few tests keep failing on MacOS M1. Solution: Add a test check CheckNotMacM1. Fix timer tests.
author Bram Moolenaar <Bram@vim.org>
date Fri, 23 Sep 2022 22:30:02 +0200
parents 08940efa6b4e
children
line wrap: on
line source

" Test Ex := command.

func Test_ex_equal()
  new
  call setline(1, ["foo\tbar", "bar\tfoo"])

  let a = execute('=')
  call assert_equal("\n2", a)

  let a = execute('=#')
  call assert_equal("\n2\n  1 foo     bar", a)

  let a = execute('=l')
  call assert_equal("\n2\nfoo^Ibar$", a)

  let a = execute('=p')
  call assert_equal("\n2\nfoo     bar", a)

  let a = execute('=l#')
  call assert_equal("\n2\n  1 foo^Ibar$", a)

  let a = execute('=p#')
  call assert_equal("\n2\n  1 foo     bar", a)

  let a = execute('.=')
  call assert_equal("\n1", a)

  call assert_fails('3=', 'E16:')
  call assert_fails('=x', 'E488:')

  bwipe!
endfunc

" vim: shiftwidth=2 sts=2 expandtab