view src/testdir/test_expr.vim @ 8638:11c0e9f60519

Added tag v7.4.1608 for changeset ff41ece2e4b81b75368104a667d905c10e68ed2b
author Christian Brabandt <cb@256bit.org>
date Sat, 19 Mar 2016 20:15:05 +0100
parents 3a38d465f731
children 03e5171c23e5
line wrap: on
line source

" Tests for expressions.

func Test_equal()
  let base = {}
  func base.method()
    return 1
  endfunc
  func base.other() dict
    return 1
  endfunc
  let instance = copy(base)
  call assert_true(base.method == instance.method)
  call assert_true([base.method] == [instance.method])
  call assert_true(base.other == instance.other)
  call assert_true([base.other] == [instance.other])

  call assert_false(base.method == base.other)
  call assert_false([base.method] == [base.other])
  call assert_false(base.method == instance.other)
  call assert_false([base.method] == [instance.other])

  call assert_fails('echo base.method > instance.method')
endfunc