forked from vim-test/vim-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnose2_spec.vim
59 lines (41 loc) · 1.04 KB
/
nose2_spec.vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
source spec/support/helpers.vim
describe "Nose2"
before
let g:test#python#runner = 'Nose2'
cd spec/fixtures/nose
end
after
call Teardown()
cd -
end
it "runs nearest tests"
view +2 test_class.py
TestNearest
Expect g:test#last_command == 'nose2 test_class.TestNumbers.test_numbers'
view +5 test_class.py
TestNearest
Expect g:test#last_command == 'nose2 test_class.TestSubclass'
view +1 test_class.py
TestNearest
Expect g:test#last_command == 'nose2 test_class.TestNumbers'
view +1 test_method.py
TestNearest
Expect g:test#last_command == 'nose2 test_method.test_numbers'
end
it "runs file test if nearest test couldn't be found"
view +1 test_method.py
normal O
TestNearest
Expect g:test#last_command == 'nose2 test_method'
end
it "runs file tests"
view test_class.py
TestFile
Expect g:test#last_command == 'nose2 test_class'
end
it "runs test suites"
view test_class.py
TestSuite
Expect g:test#last_command == 'nose2'
end
end