summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-06-06 22:27:20 +0100
committerw0rp <devw0rp@gmail.com>2017-06-06 22:27:20 +0100
commite4d886d4a798208d2c5dd10816cd3f47a8f5f431 (patch)
tree83e30da5f6d27c98670fc7b7acc02015df08a09a /test
parenteeea72e16740bb1dfa5bd554a927e6bbee76a9b5 (diff)
downloadale-e4d886d4a798208d2c5dd10816cd3f47a8f5f431.zip
Add a function for computing the number of arguments for a function
Diffstat (limited to 'test')
-rw-r--r--test/test_function_arg_count.vader41
1 files changed, 41 insertions, 0 deletions
diff --git a/test/test_function_arg_count.vader b/test/test_function_arg_count.vader
new file mode 100644
index 00000000..748eed33
--- /dev/null
+++ b/test/test_function_arg_count.vader
@@ -0,0 +1,41 @@
+Before:
+ function! Func0()
+ endfunction
+ function! Func1(x)
+ endfunction
+ function! Func2(x,y)
+ endfunction
+ function! Func3(x,y,z)
+ endfunction
+ function! Func3a(x,y,z,...)
+ endfunction
+
+After:
+ delfunction Func0
+ delfunction Func1
+ delfunction Func2
+ delfunction Func3
+ delfunction Func3a
+
+Execute(We should be able to compute the argument count for function names):
+ AssertEqual 0, ale#util#FunctionArgCount('Func0')
+ AssertEqual 1, ale#util#FunctionArgCount('Func1')
+ AssertEqual 2, ale#util#FunctionArgCount('Func2')
+ AssertEqual 3, ale#util#FunctionArgCount('Func3')
+ AssertEqual 3, ale#util#FunctionArgCount('Func3a')
+
+Execute(We should be able to compute the argument count for Funcrefs):
+ AssertEqual 0, ale#util#FunctionArgCount(function('Func0'))
+ AssertEqual 1, ale#util#FunctionArgCount(function('Func1'))
+ AssertEqual 2, ale#util#FunctionArgCount(function('Func2'))
+ AssertEqual 3, ale#util#FunctionArgCount(function('Func3'))
+ AssertEqual 3, ale#util#FunctionArgCount(function('Func3a'))
+
+Execute(We should be able to compute the argument count for lambdas):
+ if has('lambda')
+ AssertEqual 0, ale#util#FunctionArgCount({->1})
+ AssertEqual 1, ale#util#FunctionArgCount({x->1})
+ AssertEqual 2, ale#util#FunctionArgCount({x,y->1})
+ AssertEqual 3, ale#util#FunctionArgCount({x,y,z->1})
+ AssertEqual 3, ale#util#FunctionArgCount({x,y,z,...->1})
+ endif