forked from vim-test/vim-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexunit_spec.vim
71 lines (52 loc) · 1.24 KB
/
exunit_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
63
64
65
66
67
68
69
70
71
source spec/support/helpers.vim
describe "ExUnit"
describe "with mix.exs"
before
cd spec/fixtures/exunit
end
after
call Teardown()
cd -
end
it "runs nearest tests"
view +1 normal_test.exs
TestNearest
Expect g:test#last_command == 'mix test normal_test.exs'
end
it "runs specific nearest test"
view +6 normal_test.exs
TestNearest
Expect g:test#last_command == 'mix test normal_test.exs:6'
end
it "runs file tests"
view +1 normal_test.exs
TestFile
Expect g:test#last_command == 'mix test normal_test.exs'
end
it "runs test suites"
view normal_test.exs
TestSuite
Expect g:test#last_command == 'mix test'
end
end
describe "without mix.exs"
after
call Teardown()
end
it "runs nearest as file tests"
view +1 normal_test.exs
TestNearest
Expect g:test#last_command == 'elixir normal_test.exs'
end
it "runs file tests"
view normal_test.exs
TestFile
Expect g:test#last_command == 'elixir normal_test.exs'
end
it "runs test suites"
view normal_test.exs
TestSuite
Expect g:test#last_command == 'elixir *.exs'
end
end
end