diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-04-15 14:11:10 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-15 14:11:10 +0800 |
commit | 1ca77c222b00215657bae416eba5d280a1d9dc29 (patch) | |
tree | 2d203ebcd6609c1db6c61cde4d43fccb7424f341 /test/old/testdir/test_expr.vim | |
parent | c2e47e7bec0394a2cc12c8f83e3e5950ad99d1b4 (diff) | |
parent | 85741677c86f7686e3597a310f8059608e7816fb (diff) | |
download | rneovim-1ca77c222b00215657bae416eba5d280a1d9dc29.tar.gz rneovim-1ca77c222b00215657bae416eba5d280a1d9dc29.tar.bz2 rneovim-1ca77c222b00215657bae416eba5d280a1d9dc29.zip |
Merge pull request #23097 from zeertzjq/vim-8.2.0101
vim-patch:8.2.{0101,0102,0103,0104,0633,0634}: null typval tests
Diffstat (limited to 'test/old/testdir/test_expr.vim')
-rw-r--r-- | test/old/testdir/test_expr.vim | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/test/old/testdir/test_expr.vim b/test/old/testdir/test_expr.vim index 1810cf6741..1a00a85b0f 100644 --- a/test/old/testdir/test_expr.vim +++ b/test/old/testdir/test_expr.vim @@ -22,6 +22,11 @@ func Test_equal() call assert_false([base.method] == [instance.other]) call assert_fails('echo base.method > instance.method') + " Nvim doesn't have null functions + " call assert_equal(0, test_null_function() == function('min')) + " call assert_equal(1, test_null_function() == test_null_function()) + " Nvim doesn't have test_unknown() + " call assert_fails('eval 10 == test_unknown()', 'E685:') endfunc func Test_version() @@ -134,7 +139,7 @@ func Test_loop_over_null_list() endfor endfunc -func Test_set_reg_null_list() +func Test_setreg_null_list() call setreg('x', v:_null_list) endfunc @@ -712,4 +717,24 @@ func Test_expr_eval_error() call assert_fails("let v = -{}", 'E728:') endfunc +" Test for float value comparison +func Test_float_compare() + CheckFeature float + call assert_true(1.2 == 1.2) + call assert_true(1.0 != 1.2) + call assert_true(1.2 > 1.0) + call assert_true(1.2 >= 1.2) + call assert_true(1.0 < 1.2) + call assert_true(1.2 <= 1.2) + call assert_true(+0.0 == -0.0) + " two NaNs (not a number) are not equal + call assert_true(sqrt(-4.01) != (0.0 / 0.0)) + " two inf (infinity) are equal + call assert_true((1.0 / 0) == (2.0 / 0)) + " two -inf (infinity) are equal + call assert_true(-(1.0 / 0) == -(2.0 / 0)) + " +infinity != -infinity + call assert_true((1.0 / 0) != -(2.0 / 0)) +endfunc + " vim: shiftwidth=2 sts=2 expandtab |