forked from vim-test/vim-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstrategy_spec.vim
100 lines (70 loc) · 2.03 KB
/
strategy_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
source spec/support/helpers.vim
describe "strategy"
before
source spec/support/test/strategy.vim
end
after
call Teardown()
unlet! g:test#strategy
let g:test#custom_strategies = {}
end
it "defaults to basic"
RSpec
Expect g:test#last_strategy == 'basic'
end
it "can be set via test#strategy as built-in"
let g:test#strategy = 'neovim'
RSpec
Expect g:test#last_strategy == 'neovim'
end
it "can be set via test#strategy as custom"
function! CustomStrategy(cmd)
endfunction
let g:test#custom_strategies = {'custom': function('CustomStrategy')}
let g:test#strategy = 'custom'
RSpec
Expect g:test#last_strategy == 'custom'
end
it "can be set per command"
let g:test#strategy = 'foo'
RSpec -strategy=neovim
Expect g:test#last_strategy == 'neovim'
Expect g:test#last_command == 'rspec'
edit foo_spec.rb
TestFile -strategy=dispatch
Expect g:test#last_strategy == 'dispatch'
Expect g:test#last_command == 'rspec foo_spec.rb'
TestLast -strategy=basic
Expect g:test#last_strategy == 'basic'
Expect g:test#last_command == 'rspec foo_spec.rb'
end
it "remembers strategy passed when running last test"
edit foo_spec.rb
TestNearest
TestLast -strategy=neovim
Expect g:test#last_strategy == 'neovim'
TestLast
Expect g:test#last_strategy == 'neovim'
TestLast -strategy=basic
Expect g:test#last_strategy == 'basic'
end
it "can be set for different granularities"
let g:test#strategy = {'nearest': 'neovim', 'suite': 'dispatch'}
edit foo_spec.rb
TestNearest
Expect g:test#last_strategy == 'neovim'
TestFile
Expect g:test#last_strategy == 'basic'
TestSuite
Expect g:test#last_strategy == 'dispatch'
end
it "switches to VimScript regardless of the value"
function! test#strategy#vimscript(cmd)
let g:vimscript_called = 1
endfunction
let g:test#strategy = 'neovim'
FireplaceTest
Expect g:vimscript_called == 1
unlet g:vimscript_called
end
end