##// END OF EJS Templates
add some comment
Piti Ongmongkolkul -
Show More
@@ -282,5 +282,5 b' def test_func_kw_completions():'
282 ip.ex('def myfunc(a=1,b=2): return a+b')
282 ip.ex('def myfunc(a=1,b=2): return a+b')
283 s, matches = c.complete(None,'myfunc(1,b')
283 s, matches = c.complete(None,'myfunc(1,b')
284 nt.assert_true('b=' in matches)
284 nt.assert_true('b=' in matches)
285 s, matches = c.complete(None,'myfunc(1,b)',10)
285 s, matches = c.complete(None,'myfunc(1,b)',10)#cursor is right after b
286 nt.assert_true('b=' in matches)
286 nt.assert_true('b=' in matches)
General Comments 0
You need to be logged in to leave comments. Login now