forked from vim-test/vim-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdelve_spec.vim
102 lines (74 loc) · 2.22 KB
/
delve_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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
source spec/support/helpers.vim
describe "Delve"
before
let g:test#go#runner = "delve"
cd spec/fixtures/delve
end
after
call Teardown()
cd -
end
it "runs nearest tests"
view +5 normal_test.go
TestNearest
Expect g:test#last_command == 'dlv test ./. -- -test.run ''TestNumbers$'''
view +9 normal_test.go
TestNearest
Expect g:test#last_command == 'dlv test ./. -- -test.run ''Testテスト$'''
view +13 normal_test.go
TestNearest
Expect g:test#last_command == 'dlv test ./. -- -test.run ''ExampleSomething$'''
view +17 ginkgo_test.go
TestNearest
Expect g:test#last_command == "dlv test ./. -- -ginkgo.focus='should paginate the result'"
end
it "runs nearest tests in subdirectory"
view +5 mypackage/normal_test.go
TestNearest
Expect g:test#last_command == 'dlv test ./mypackage -- -test.run ''TestNumbers$'''
view +9 mypackage/normal_test.go
TestNearest
Expect g:test#last_command == 'dlv test ./mypackage -- -test.run ''Testテスト$'''
view +13 mypackage/normal_test.go
TestNearest
Expect g:test#last_command == 'dlv test ./mypackage -- -test.run ''ExampleSomething$'''
end
it "runs file test if nearest test couldn't be found"
view +1 normal_test.go
TestNearest
Expect g:test#last_command == 'dlv test'
end
it "runs file tests"
view normal_test.go
TestFile
Expect g:test#last_command == 'dlv test'
end
it "runs tests in subdirectory"
view mypackage/normal_test.go
TestFile
Expect g:test#last_command == 'dlv test ./mypackage/...'
end
it "runs test suites"
view normal_test.go
TestSuite
Expect g:test#last_command == 'dlv test ./...'
end
describe "when options are defined"
before
let g:test#go#delve#options = '-test.v'
end
after
unlet g:test#go#delve#options
end
it "appends options to the end in a suite test"
view normal_test.go
TestSuite
Expect g:test#last_command == 'dlv test ./... -- -test.v'
end
it "appends options to the end in a nearest test"
view +5 normal_test.go
TestNearest
Expect g:test#last_command == 'dlv test ./. -- -test.run ''TestNumbers$'' -test.v'
end
end
end