aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2016-12-01 12:51:10 -0500
committerGitHub <noreply@github.com>2016-12-01 12:51:10 -0500
commit6c1d81aef2acee88f61eef5303468063e2c51d9b (patch)
tree7ad480972da6b38bc14cb30b2ea1fbe50f07d1fb /src/nvim/testdir
parent85f9f9f46dfc53966621c87442eed3528fb92c26 (diff)
parent4f3bb5262caa95a2a12d7366ef428ed5399d21c9 (diff)
downloadrneovim-6c1d81aef2acee88f61eef5303468063e2c51d9b.tar.gz
rneovim-6c1d81aef2acee88f61eef5303468063e2c51d9b.tar.bz2
rneovim-6c1d81aef2acee88f61eef5303468063e2c51d9b.zip
Merge pull request #5663 from brcolow/vim-7.4.1702
vim-patch:7.4.1702
Diffstat (limited to 'src/nvim/testdir')
-rw-r--r--src/nvim/testdir/test_hardcopy.vim4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_hardcopy.vim b/src/nvim/testdir/test_hardcopy.vim
index 4629d17dd2..ea9790d134 100644
--- a/src/nvim/testdir/test_hardcopy.vim
+++ b/src/nvim/testdir/test_hardcopy.vim
@@ -23,6 +23,10 @@ func Test_printoptions_parsing()
set printoptions=formfeed:y
set printoptions=
set printoptions&
+
+ call assert_fails('set printoptions=paper', 'E550:')
+ call assert_fails('set printoptions=shredder:on', 'E551:')
+ call assert_fails('set printoptions=left:no', 'E552:')
endfunc
func Test_printmbfont_parsing()