comparison src/testdir/test_expr.vim @ 8742:03e5171c23e5 v7.4.1660

commit https://github.com/vim/vim/commit/819821c5a95fc60797ecbb5e5ca1302e397e3d9a Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 26 21:24:14 2016 +0100 patch 7.4.1660 Problem: has('patch-7.4.1') doesn't work. Solution: Fix off-by-one error. (Thinca)
author Christian Brabandt <cb@256bit.org>
date Sat, 26 Mar 2016 21:30:05 +0100
parents 3a38d465f731
children 9fa567d13551
comparison
equal deleted inserted replaced
8741:8e668324528d 8742:03e5171c23e5
19 call assert_false(base.method == instance.other) 19 call assert_false(base.method == instance.other)
20 call assert_false([base.method] == [instance.other]) 20 call assert_false([base.method] == [instance.other])
21 21
22 call assert_fails('echo base.method > instance.method') 22 call assert_fails('echo base.method > instance.method')
23 endfunc 23 endfunc
24
25 func Test_version()
26 call assert_true(has('patch-7.4.001'))
27 call assert_true(has('patch-7.4.01'))
28 call assert_true(has('patch-7.4.1'))
29 call assert_true(has('patch-6.9.999'))
30 call assert_true(has('patch-7.1.999'))
31 call assert_true(has('patch-7.4.123'))
32
33 call assert_false(has('patch-7'))
34 call assert_false(has('patch-7.4'))
35 call assert_false(has('patch-7.4.'))
36 call assert_false(has('patch-9.1.0'))
37 call assert_false(has('patch-9.9.1'))
38 endfunc