view src/testdir/test_expr.vim @ 8722:ecb57048c2a8 v7.4.1650

commit https://github.com/vim/vim/commit/f68f1d70799631d38461c36cd59d08cf839b010d Author: Bram Moolenaar <Bram@vim.org> Date: Fri Mar 25 17:14:06 2016 +0100 patch 7.4.1650 Problem: Quickfix test fails. Solution: Accept any number of matches.
author Christian Brabandt <cb@256bit.org>
date Fri, 25 Mar 2016 17: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