FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
vdebug/spec/options_command_spec.rb at master · vim-vdebug/vdebug · GitHub
vim-vdebug
/
vdebug
Public
Notifications
You must be signed in to change notification settings
Fork
157
Star
1.3k
Code
Issues
48
Pull requests
7
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
vdebug
/
spec
/
options_command_spec.rb
Copy path
More file actions
More file actions
Latest commit
History
History
History
79 lines (60 loc) · 2.1 KB
Breadcrumbs
vdebug
/
spec
/
options_command_spec.rb
Copy path
File metadata and controls
79 lines (60 loc) · 2.1 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
require
'spec_helper'
# The subject of the test, human readable
describe
":VdebugOpt"
do
# This is what is run when using "it_behaves_like"
shared_examples
"a vdebug option"
do
|
option
,
value
|
# What is being checked?
context
"the resulting option value"
do
# Code to run before the test
before
{
vim
.
command
"VdebugOpt
#{
option
}
#{
value
}
"
}
# What does "it" refer to?
subject
{
vim
.
echo
"g:vdebug_options['
#{
option
}
']"
}
# The actual test assertion
it
{
should
==
value
}
end
end
# Each test for a different option is in a context block
context
"setting debug_file"
do
# Calls the block "a vdebug option", which contains a test
it_behaves_like
"a vdebug option"
,
"debug_file"
,
"path/to/file.log"
end
context
"setting debug_file_level"
do
it_behaves_like
"a vdebug option"
,
"debug_file_level"
,
"2"
end
context
"setting debug_window_level"
do
it_behaves_like
"a vdebug option"
,
"debug_window_level"
,
"2"
end
context
"setting watch_window_style"
do
it_behaves_like
"a vdebug option"
,
"watch_window_style"
,
"compact"
end
context
"setting marker_default"
do
it_behaves_like
"a vdebug option"
,
"marker_default"
,
"*"
end
context
"setting marker_closed_tree"
do
it_behaves_like
"a vdebug option"
,
"marker_closed_tree"
,
">"
end
context
"setting marker_open_tree"
do
it_behaves_like
"a vdebug option"
,
"marker_open_tree"
,
"V"
end
context
"setting ide_key"
do
it_behaves_like
"a vdebug option"
,
"ide_key"
,
"abcd1234"
end
context
"setting break_on_open"
do
it_behaves_like
"a vdebug option"
,
"break_on_open"
,
"0"
end
context
"setting on_close"
do
it_behaves_like
"a vdebug option"
,
"on_close"
,
"detach"
end
context
"setting timeout"
do
it_behaves_like
"a vdebug option"
,
"timeout"
,
"20"
end
context
"setting server"
do
it_behaves_like
"a vdebug option"
,
"server"
,
"192.168.0.1"
end
context
"setting port"
do
it_behaves_like
"a vdebug option"
,
"port"
,
"20000"
end
context
"setting continuous_mode"
do
it_behaves_like
"a vdebug option"
,
"continuous_mode"
,
"1"
end
end
Back
|
FazBrowse Home
|
New Git URL