view src/testdir/test_help_tagjump.vim @ 8676:289765409225 v7.4.1627

commit https://github.com/vim/vim/commit/75f7265dd402665b8600fdf21ba33f19db06ac0d Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 20 22:16:56 2016 +0100 patch 7.4.1627 Problem: Channel out_cb and err_cb are not tested. Solution: Add a test.
author Christian Brabandt <cb@256bit.org>
date Sun, 20 Mar 2016 22:30:05 +0100
parents 40b982c98587
children b7de875169e6
line wrap: on
line source

" Tests for :help! {subject}

func Test_help_tagjump()
  help
  call assert_equal("help", &filetype)
  call assert_true(getline('.') =~ '\*help.txt\*')
  helpclose

  exec "help! ('textwidth'"
  call assert_equal("help", &filetype)
  call assert_true(getline('.') =~ "\\*'textwidth'\\*")
  helpclose

  exec "help! ('buflisted'),"
  call assert_equal("help", &filetype)
  call assert_true(getline('.') =~ "\\*'buflisted'\\*")
  helpclose
endfunc