aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2016-09-30 08:25:15 -0400
committerJames McCoy <jamessan@jamessan.com>2016-09-30 08:25:15 -0400
commitc8b6ec2e6a8599203b4cff762f148f62464d9725 (patch)
tree484c01f263fbeb2fc27b032c771fa1223cc039e7 /test
parent724675061c32ce8eaf658f9633e32510a5f23b5d (diff)
parent3a59b04c1997a697c3428bcfcf4fa9e875e718dd (diff)
downloadrneovim-c8b6ec2e6a8599203b4cff762f148f62464d9725.tar.gz
rneovim-c8b6ec2e6a8599203b4cff762f148f62464d9725.tar.bz2
rneovim-c8b6ec2e6a8599203b4cff762f148f62464d9725.zip
Merge pull request #5409 from jamessan/toplevel-state
Correct logic for setting NormalState.toplevel
Diffstat (limited to 'test')
-rw-r--r--test/functional/normal/count_spec.lua39
1 files changed, 39 insertions, 0 deletions
diff --git a/test/functional/normal/count_spec.lua b/test/functional/normal/count_spec.lua
new file mode 100644
index 0000000000..700e1f3e81
--- /dev/null
+++ b/test/functional/normal/count_spec.lua
@@ -0,0 +1,39 @@
+local helpers = require('test.functional.helpers')(after_each)
+
+local eq = helpers.eq
+local eval = helpers.eval
+local feed = helpers.feed
+local clear = helpers.clear
+local execute = helpers.execute
+
+describe('v:count/v:count1', function()
+ before_each(function()
+ clear()
+
+ execute('map <silent> _x :<C-u>let g:count = "v:count=". v:count .", v:count1=". v:count1<CR>')
+ end)
+
+ describe('in cmdwin', function()
+ it('equal 0/1 when no count is given', function()
+ feed('q:_x')
+ eq('v:count=0, v:count1=1', eval('g:count'))
+ end)
+
+ it('equal 2/2 when count of 2 is given', function()
+ feed('q:2_x')
+ eq('v:count=2, v:count1=2', eval('g:count'))
+ end)
+ end)
+
+ describe('in normal mode', function()
+ it('equal 0/1 when no count is given', function()
+ feed('_x')
+ eq('v:count=0, v:count1=1', eval('g:count'))
+ end)
+
+ it('equal 2/2 when count of 2 is given', function()
+ feed('2_x')
+ eq('v:count=2, v:count1=2', eval('g:count'))
+ end)
+ end)
+end)