comparison src/testdir/test_filetype.vim @ 19425:67fbe280a502 v8.2.0270

patch 8.2.0270: some code not covered by tests Commit: https://github.com/vim/vim/commit/bc2b71d44a0b90b6aeb3534a76912fccbe5577df Author: Bram Moolenaar <Bram@vim.org> Date: Mon Feb 17 21:33:30 2020 +0100 patch 8.2.0270: some code not covered by tests Problem: Some code not covered by tests. Solution: Add test cases. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/5649)
author Bram Moolenaar <Bram@vim.org>
date Mon, 17 Feb 2020 21:45:04 +0100
parents 06d9be5c0107
children cb73f4ae6b7c
comparison
equal deleted inserted replaced
19424:38c3f2b16596 19425:67fbe280a502
619 619
620 func Test_setfiletype_completion() 620 func Test_setfiletype_completion()
621 call feedkeys(":setfiletype java\<C-A>\<C-B>\"\<CR>", 'tx') 621 call feedkeys(":setfiletype java\<C-A>\<C-B>\"\<CR>", 'tx')
622 call assert_equal('"setfiletype java javacc javascript javascriptreact', @:) 622 call assert_equal('"setfiletype java javacc javascript javascriptreact', @:)
623 endfunc 623 endfunc
624
625 " Test for ':filetype detect' command for a buffer without a file
626 func Test_emptybuf_ftdetect()
627 new
628 call setline(1, '#!/bin/sh')
629 call assert_equal('', &filetype)
630 filetype detect
631 call assert_equal('sh', &filetype)
632 close!
633 endfunc
634
635 " Test for ':filetype indent on' and ':filetype indent off' commands
636 func Test_filetype_indent_off()
637 new Xtest.vim
638 filetype indent on
639 call assert_equal(1, g:did_indent_on)
640 filetype indent off
641 call assert_equal(0, exists('g:did_indent_on'))
642 close
643 endfunc
644
645 " vim: shiftwidth=2 sts=2 expandtab