util.vim 116 B

1234
  1. function! CheckCurrentLine( expected_value )
  2. return assert_equal( a:expected_value, getline( '.' ) )
  3. endfunction