forked from vim-test/vim-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbusted_spec.vim
63 lines (42 loc) · 1.26 KB
/
busted_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
60
61
62
source spec/support/helpers.vim
describe "LuaTest"
before
cd spec/fixtures/busted
end
after
call Teardown()
cd -
end
it "runs nearest tests"
view normal_spec.lua
TestNearest
Expect g:test#last_command == 'busted --filter ''Numbers'' normal_spec.lua'
view +2 normal_spec.lua
TestNearest
Expect g:test#last_command == 'busted --filter ''can be added'' normal_spec.lua'
view normal_spec.moon
TestNearest
Expect g:test#last_command == 'busted --filter ''Numbers'' normal_spec.moon'
view +2 normal_spec.moon
TestNearest
Expect g:test#last_command == 'busted --filter ''can be added'' normal_spec.moon'
end
it "runs nearest tests and escapes Lua pattern magic characters"
view +7 normal_spec.lua
TestNearest
Expect g:test#last_command == 'busted --filter ''can add with magic \%( \%) \%. \%\% \%+ \%- \%* \%? \%[ \%^ \%$'' normal_spec.lua'
end
it "runs file tests"
view normal_spec.lua
TestFile
Expect g:test#last_command == 'busted normal_spec.lua'
view normal_spec.moon
TestFile
Expect g:test#last_command == 'busted normal_spec.moon'
end
it "runs test suites"
view normal_spec.lua
TestSuite
Expect g:test#last_command == 'busted'
end
end