cucumber_analytics 1.4.2 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.rdoc +7 -0
- data/README.rdoc +4 -0
- data/Rakefile +1 -1
- data/cucumber_analytics.gemspec +3 -1
- data/features/modeling/background_modeling.feature +27 -13
- data/features/modeling/background_output.feature +130 -0
- data/features/modeling/directory_modeling.feature +11 -6
- data/features/modeling/directory_output.feature +13 -0
- data/features/modeling/doc_string_modeling.feature +18 -11
- data/features/modeling/doc_string_output.feature +71 -0
- data/features/modeling/example_modeling.feature +30 -19
- data/features/modeling/example_output.feature +192 -0
- data/features/modeling/feature_file_modeling.feature +9 -4
- data/features/modeling/feature_file_output.feature +13 -0
- data/features/modeling/feature_modeling.feature +33 -20
- data/features/modeling/feature_output.feature +244 -0
- data/features/modeling/outline_modeling.feature +29 -16
- data/features/modeling/outline_output.feature +197 -0
- data/features/modeling/row_modeling.feature +9 -4
- data/features/modeling/row_output.feature +27 -0
- data/features/modeling/scenario_modeling.feature +27 -14
- data/features/modeling/scenario_output.feature +147 -0
- data/features/modeling/step_modeling.feature +13 -8
- data/features/modeling/step_output.feature +52 -0
- data/features/modeling/table_modeling.feature +9 -4
- data/features/modeling/table_output.feature +42 -0
- data/features/modeling/table_row_modeling.feature +9 -4
- data/features/modeling/table_row_output.feature +27 -0
- data/features/modeling/tag_modeling.feature +10 -5
- data/features/modeling/tag_output.feature +16 -0
- data/features/step_definitions/action_steps.rb +3 -0
- data/features/step_definitions/background_steps.rb +17 -4
- data/features/step_definitions/directory_steps.rb +11 -0
- data/features/step_definitions/doc_string_steps.rb +18 -15
- data/features/step_definitions/feature_file_steps.rb +12 -1
- data/features/step_definitions/feature_steps.rb +23 -6
- data/features/step_definitions/outline_steps.rb +70 -9
- data/features/step_definitions/step_steps.rb +9 -1
- data/features/step_definitions/table_steps.rb +35 -2
- data/features/step_definitions/tag_steps.rb +8 -0
- data/features/step_definitions/test_steps.rb +14 -3
- data/features/step_definitions/verification_steps.rb +9 -0
- data/features/support/env.rb +1 -0
- data/lib/cucumber_analytics/background.rb +12 -0
- data/lib/cucumber_analytics/directory.rb +5 -0
- data/lib/cucumber_analytics/doc_string.rb +22 -0
- data/lib/cucumber_analytics/example.rb +55 -0
- data/lib/cucumber_analytics/feature.rb +26 -0
- data/lib/cucumber_analytics/feature_element.rb +25 -1
- data/lib/cucumber_analytics/feature_file.rb +5 -0
- data/lib/cucumber_analytics/outline.rb +18 -0
- data/lib/cucumber_analytics/parsing.rb +3 -1
- data/lib/cucumber_analytics/row.rb +5 -0
- data/lib/cucumber_analytics/scenario.rb +13 -0
- data/lib/cucumber_analytics/step.rb +8 -0
- data/lib/cucumber_analytics/table.rb +21 -0
- data/lib/cucumber_analytics/table_row.rb +5 -0
- data/lib/cucumber_analytics/tag.rb +5 -0
- data/lib/cucumber_analytics/taggable.rb +4 -0
- data/lib/cucumber_analytics/test_element.rb +8 -0
- data/lib/cucumber_analytics/version.rb +1 -1
- data/spec/integration/background_integration_spec.rb +12 -0
- data/spec/integration/example_integration_spec.rb +21 -0
- data/spec/integration/feature_integration_spec.rb +29 -0
- data/spec/integration/outline_integration_spec.rb +22 -0
- data/spec/integration/scenario_integration_spec.rb +16 -0
- data/spec/integration/step_integration_spec.rb +20 -0
- data/spec/integration/table_integration_spec.rb +11 -0
- data/spec/unit/background_unit_spec.rb +28 -0
- data/spec/unit/directory_unit_spec.rb +12 -0
- data/spec/unit/doc_string_unit_spec.rb +43 -3
- data/spec/unit/example_unit_spec.rb +53 -0
- data/spec/unit/feature_element_unit_specs.rb +9 -2
- data/spec/unit/feature_file_unit_spec.rb +12 -0
- data/spec/unit/feature_unit_spec.rb +30 -0
- data/spec/unit/outline_unit_spec.rb +30 -0
- data/spec/unit/row_unit_spec.rb +19 -7
- data/spec/unit/scenario_unit_spec.rb +30 -0
- data/spec/unit/step_unit_spec.rb +25 -1
- data/spec/unit/table_row_unit_spec.rb +12 -0
- data/spec/unit/table_unit_spec.rb +25 -0
- data/spec/unit/tag_unit_spec.rb +12 -0
- metadata +165 -86
- checksums.yaml +0 -15
@@ -17,15 +17,21 @@ shared_examples_for 'a feature element' do |clazz|
|
|
17
17
|
@element.name.should == :some_other_name
|
18
18
|
end
|
19
19
|
|
20
|
-
it 'has a description
|
20
|
+
it 'has a description' do
|
21
21
|
@element.should respond_to(:description)
|
22
|
+
@element.should respond_to(:description_text)
|
22
23
|
end
|
23
24
|
|
24
|
-
it 'can get and set its description
|
25
|
+
it 'can get and set its description' do
|
25
26
|
@element.description = :some_description
|
26
27
|
@element.description.should == :some_description
|
27
28
|
@element.description = :some_other_description
|
28
29
|
@element.description.should == :some_other_description
|
30
|
+
|
31
|
+
@element.description_text = :some_description
|
32
|
+
@element.description_text.should == :some_description
|
33
|
+
@element.description_text = :some_other_description
|
34
|
+
@element.description_text.should == :some_other_description
|
29
35
|
end
|
30
36
|
|
31
37
|
it 'starts with no name' do
|
@@ -34,6 +40,7 @@ shared_examples_for 'a feature element' do |clazz|
|
|
34
40
|
|
35
41
|
it 'starts with no description' do
|
36
42
|
@element.description.should == []
|
43
|
+
@element.description_text.should == ''
|
37
44
|
end
|
38
45
|
|
39
46
|
end
|
@@ -79,4 +79,16 @@ describe 'FeatureFile, Unit' do
|
|
79
79
|
@feature_file.feature.should == :a_feature
|
80
80
|
end
|
81
81
|
|
82
|
+
context 'feature file output edge cases' do
|
83
|
+
|
84
|
+
it 'is a String' do
|
85
|
+
@feature_file.to_s.should be_a(String)
|
86
|
+
end
|
87
|
+
|
88
|
+
it 'can output an empty feature file' do
|
89
|
+
expect { @feature_file.to_s }.to_not raise_error
|
90
|
+
end
|
91
|
+
|
92
|
+
end
|
93
|
+
|
82
94
|
end
|
@@ -102,4 +102,34 @@ describe 'Feature, Unit' do
|
|
102
102
|
@feature.tests.should == []
|
103
103
|
end
|
104
104
|
|
105
|
+
context 'feature output edge cases' do
|
106
|
+
|
107
|
+
it 'is a String' do
|
108
|
+
@feature.to_s.should be_a(String)
|
109
|
+
end
|
110
|
+
|
111
|
+
it 'can output an empty feature' do
|
112
|
+
expect { @feature.to_s }.to_not raise_error
|
113
|
+
end
|
114
|
+
|
115
|
+
it 'can output a feature that has only a name' do
|
116
|
+
@feature.name = 'a name'
|
117
|
+
|
118
|
+
expect { @feature.to_s }.to_not raise_error
|
119
|
+
end
|
120
|
+
|
121
|
+
it 'can output a feature that has only a description' do
|
122
|
+
@feature.description_text = 'a description'
|
123
|
+
|
124
|
+
expect { @feature.to_s }.to_not raise_error
|
125
|
+
end
|
126
|
+
|
127
|
+
it 'can output a feature that has only a tags' do
|
128
|
+
@feature.tags = ['a tag']
|
129
|
+
|
130
|
+
expect { @feature.to_s }.to_not raise_error
|
131
|
+
end
|
132
|
+
|
133
|
+
end
|
134
|
+
|
105
135
|
end
|
@@ -58,4 +58,34 @@ describe 'Outline, Unit' do
|
|
58
58
|
@outline.contains.should =~ everything
|
59
59
|
end
|
60
60
|
|
61
|
+
context 'outline output edge cases' do
|
62
|
+
|
63
|
+
it 'is a String' do
|
64
|
+
@outline.to_s.should be_a(String)
|
65
|
+
end
|
66
|
+
|
67
|
+
it 'can output an empty outline' do
|
68
|
+
expect { @outline.to_s }.to_not raise_error
|
69
|
+
end
|
70
|
+
|
71
|
+
it 'can output an outline that has only a name' do
|
72
|
+
@outline.name = 'a name'
|
73
|
+
|
74
|
+
expect { @outline.to_s }.to_not raise_error
|
75
|
+
end
|
76
|
+
|
77
|
+
it 'can output an outline that has only a description' do
|
78
|
+
@outline.description_text = 'a description'
|
79
|
+
|
80
|
+
expect { @outline.to_s }.to_not raise_error
|
81
|
+
end
|
82
|
+
|
83
|
+
it 'can output an outline that has only a tags' do
|
84
|
+
@outline.tags = ['a tag']
|
85
|
+
|
86
|
+
expect { @outline.to_s }.to_not raise_error
|
87
|
+
end
|
88
|
+
|
89
|
+
end
|
90
|
+
|
61
91
|
end
|
data/spec/unit/row_unit_spec.rb
CHANGED
@@ -22,22 +22,34 @@ describe 'Row, Unit' do
|
|
22
22
|
end
|
23
23
|
|
24
24
|
before(:each) do
|
25
|
-
@
|
25
|
+
@row = clazz.new
|
26
26
|
end
|
27
27
|
|
28
28
|
it 'has cells - #cells' do
|
29
|
-
@
|
29
|
+
@row.should respond_to(:cells)
|
30
30
|
end
|
31
31
|
|
32
32
|
it 'can get and set its cells - #cells, #cells=' do
|
33
|
-
@
|
34
|
-
@
|
35
|
-
@
|
36
|
-
@
|
33
|
+
@row.cells = :some_cells
|
34
|
+
@row.cells.should == :some_cells
|
35
|
+
@row.cells = :some_other_cells
|
36
|
+
@row.cells.should == :some_other_cells
|
37
37
|
end
|
38
38
|
|
39
39
|
it 'starts with no cells' do
|
40
|
-
@
|
40
|
+
@row.cells.should == []
|
41
|
+
end
|
42
|
+
|
43
|
+
context 'row output edge cases' do
|
44
|
+
|
45
|
+
it 'is a String' do
|
46
|
+
@row.to_s.should be_a(String)
|
47
|
+
end
|
48
|
+
|
49
|
+
it 'can output an empty row' do
|
50
|
+
expect { @row.to_s }.to_not raise_error
|
51
|
+
end
|
52
|
+
|
41
53
|
end
|
42
54
|
|
43
55
|
end
|
@@ -38,4 +38,34 @@ describe 'Scenario, Unit' do
|
|
38
38
|
@scenario.contains.should =~ everything
|
39
39
|
end
|
40
40
|
|
41
|
+
context 'scenario output edge cases' do
|
42
|
+
|
43
|
+
it 'is a String' do
|
44
|
+
@scenario.to_s.should be_a(String)
|
45
|
+
end
|
46
|
+
|
47
|
+
it 'can output an empty scenario' do
|
48
|
+
expect { @scenario.to_s }.to_not raise_error
|
49
|
+
end
|
50
|
+
|
51
|
+
it 'can output a scenario that has only a name' do
|
52
|
+
@scenario.name = 'a name'
|
53
|
+
|
54
|
+
expect { @scenario.to_s }.to_not raise_error
|
55
|
+
end
|
56
|
+
|
57
|
+
it 'can output a scenario that has only a description' do
|
58
|
+
@scenario.description_text = 'a description'
|
59
|
+
|
60
|
+
expect { @scenario.to_s }.to_not raise_error
|
61
|
+
end
|
62
|
+
|
63
|
+
it 'can output a scenario that has only a tags' do
|
64
|
+
@scenario.tags = ['a tag']
|
65
|
+
|
66
|
+
expect { @scenario.to_s }.to_not raise_error
|
67
|
+
end
|
68
|
+
|
69
|
+
end
|
70
|
+
|
41
71
|
end
|
data/spec/unit/step_unit_spec.rb
CHANGED
@@ -187,7 +187,7 @@ describe 'Step, Unit' do
|
|
187
187
|
@element.base.should == 'test step'
|
188
188
|
end
|
189
189
|
|
190
|
-
context '#step_text
|
190
|
+
context '#step_text' do
|
191
191
|
|
192
192
|
before(:each) do
|
193
193
|
source = "Given a test step with -parameter 1- ^and@ *parameter 2!!\n|a block|"
|
@@ -232,4 +232,28 @@ describe 'Step, Unit' do
|
|
232
232
|
end
|
233
233
|
|
234
234
|
end
|
235
|
+
|
236
|
+
context 'step output edge cases' do
|
237
|
+
|
238
|
+
it 'is a String' do
|
239
|
+
@step.to_s.should be_a(String)
|
240
|
+
end
|
241
|
+
|
242
|
+
it 'can output an empty step' do
|
243
|
+
expect { @step.to_s }.to_not raise_error
|
244
|
+
end
|
245
|
+
|
246
|
+
it 'can output a step that has only a keyword' do
|
247
|
+
@step.keyword = '*'
|
248
|
+
|
249
|
+
expect { @step.to_s }.to_not raise_error
|
250
|
+
end
|
251
|
+
|
252
|
+
it 'can output a step that has only a base' do
|
253
|
+
@step.base = 'step base'
|
254
|
+
|
255
|
+
expect { @step.to_s }.to_not raise_error
|
256
|
+
end
|
257
|
+
|
258
|
+
end
|
235
259
|
end
|
@@ -40,4 +40,16 @@ describe 'TableRow, Unit' do
|
|
40
40
|
@row.cells.should == []
|
41
41
|
end
|
42
42
|
|
43
|
+
context 'table row output edge cases' do
|
44
|
+
|
45
|
+
it 'is a String' do
|
46
|
+
@row.to_s.should be_a(String)
|
47
|
+
end
|
48
|
+
|
49
|
+
it 'can output an empty table row' do
|
50
|
+
expect { @row.to_s }.to_not raise_error
|
51
|
+
end
|
52
|
+
|
53
|
+
end
|
54
|
+
|
43
55
|
end
|
@@ -17,6 +17,8 @@ describe 'Table, Unit' do
|
|
17
17
|
expect { @element = clazz.new(source) }.to_not raise_error
|
18
18
|
|
19
19
|
# Sanity check in case instantiation failed in a non-explosive manner
|
20
|
+
@element.row_elements.collect { |row| row.cells }.should == [['a table']]
|
21
|
+
# todo - remove once #contents is no longer supported
|
20
22
|
@element.contents.should == [['a table']]
|
21
23
|
end
|
22
24
|
|
@@ -24,10 +26,12 @@ describe 'Table, Unit' do
|
|
24
26
|
@table = clazz.new
|
25
27
|
end
|
26
28
|
|
29
|
+
# todo - remove once #contents is no longer supported
|
27
30
|
it 'has contents - #contents' do
|
28
31
|
@table.should respond_to(:contents)
|
29
32
|
end
|
30
33
|
|
34
|
+
# todo - remove once #contents is no longer supported
|
31
35
|
it 'can get and set its contents - #contents, #contents=' do
|
32
36
|
@table.contents = :some_contents
|
33
37
|
@table.contents.should == :some_contents
|
@@ -35,6 +39,7 @@ describe 'Table, Unit' do
|
|
35
39
|
@table.contents.should == :some_other_contents
|
36
40
|
end
|
37
41
|
|
42
|
+
# todo - remove once #contents is no longer supported
|
38
43
|
it 'starts with no contents' do
|
39
44
|
@table.contents.should == []
|
40
45
|
end
|
@@ -54,6 +59,7 @@ describe 'Table, Unit' do
|
|
54
59
|
@table.row_elements.should == []
|
55
60
|
end
|
56
61
|
|
62
|
+
# todo - remove once #contents is no longer supported
|
57
63
|
it 'stores its contents as a nested array of strings' do
|
58
64
|
source = "| cell 1 | cell 2 |\n| cell 3 | cell 4 |"
|
59
65
|
table = CucumberAnalytics::Table.new(source)
|
@@ -68,4 +74,23 @@ describe 'Table, Unit' do
|
|
68
74
|
end
|
69
75
|
end
|
70
76
|
|
77
|
+
context 'table output edge cases' do
|
78
|
+
|
79
|
+
it 'is a String' do
|
80
|
+
@table.to_s.should be_a(String)
|
81
|
+
end
|
82
|
+
|
83
|
+
it 'can output an empty table' do
|
84
|
+
expect { @table.to_s }.to_not raise_error
|
85
|
+
end
|
86
|
+
|
87
|
+
# todo - remove once #contents is no longer supported
|
88
|
+
it 'can output a table that only has contents' do
|
89
|
+
@table.contents = ['some contents']
|
90
|
+
|
91
|
+
expect { @table.to_s }.to_not raise_error
|
92
|
+
end
|
93
|
+
|
94
|
+
end
|
95
|
+
|
71
96
|
end
|
data/spec/unit/tag_unit_spec.rb
CHANGED
@@ -36,4 +36,16 @@ describe 'Tag, Unit' do
|
|
36
36
|
@element.name.should == :some_other_name
|
37
37
|
end
|
38
38
|
|
39
|
+
context 'tag output edge cases' do
|
40
|
+
|
41
|
+
it 'is a String' do
|
42
|
+
@element.to_s.should be_a(String)
|
43
|
+
end
|
44
|
+
|
45
|
+
it 'can output an empty tag' do
|
46
|
+
expect { @element.to_s }.to_not raise_error
|
47
|
+
end
|
48
|
+
|
49
|
+
end
|
50
|
+
|
39
51
|
end
|
metadata
CHANGED
@@ -1,92 +1,134 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: cucumber_analytics
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 3
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 5
|
9
|
+
- 0
|
10
|
+
version: 1.5.0
|
5
11
|
platform: ruby
|
6
|
-
authors:
|
12
|
+
authors:
|
7
13
|
- Eric Kessler
|
8
14
|
autorequire:
|
9
15
|
bindir: bin
|
10
16
|
cert_chain: []
|
11
|
-
|
12
|
-
|
13
|
-
|
17
|
+
|
18
|
+
date: 2014-02-04 00:00:00 Z
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
14
21
|
name: gherkin
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
none: false
|
25
|
+
requirements:
|
26
|
+
- - ~>
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
hash: 35
|
29
|
+
segments:
|
30
|
+
- 2
|
31
|
+
- 11
|
32
|
+
- 0
|
33
|
+
version: 2.11.0
|
34
|
+
type: :runtime
|
35
|
+
version_requirements: *id001
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: json
|
38
|
+
prerelease: false
|
39
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
40
|
+
none: false
|
41
|
+
requirements:
|
42
|
+
- - ~>
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
hash: 15
|
45
|
+
segments:
|
46
|
+
- 1
|
47
|
+
- 0
|
48
|
+
version: "1.0"
|
20
49
|
type: :runtime
|
50
|
+
version_requirements: *id002
|
51
|
+
- !ruby/object:Gem::Dependency
|
52
|
+
name: multi_json
|
21
53
|
prerelease: false
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
54
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
55
|
+
none: false
|
56
|
+
requirements:
|
57
|
+
- - ~>
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
hash: 15
|
60
|
+
segments:
|
61
|
+
- 1
|
62
|
+
- 0
|
63
|
+
version: "1.0"
|
64
|
+
type: :runtime
|
65
|
+
version_requirements: *id003
|
66
|
+
- !ruby/object:Gem::Dependency
|
28
67
|
name: rake
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - ! '>='
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '0'
|
34
|
-
type: :development
|
35
68
|
prerelease: false
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
- - ! '>='
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '0'
|
69
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
70
|
+
none: false
|
71
|
+
requirements:
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
hash: 3
|
75
|
+
segments:
|
76
|
+
- 0
|
77
|
+
version: "0"
|
48
78
|
type: :development
|
79
|
+
version_requirements: *id004
|
80
|
+
- !ruby/object:Gem::Dependency
|
81
|
+
name: cucumber
|
49
82
|
prerelease: false
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
- - ! '>='
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '0'
|
83
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
84
|
+
none: false
|
85
|
+
requirements:
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
hash: 3
|
89
|
+
segments:
|
90
|
+
- 0
|
91
|
+
version: "0"
|
62
92
|
type: :development
|
93
|
+
version_requirements: *id005
|
94
|
+
- !ruby/object:Gem::Dependency
|
95
|
+
name: rspec
|
63
96
|
prerelease: false
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
- - ! '>='
|
74
|
-
- !ruby/object:Gem::Version
|
75
|
-
version: '0'
|
97
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
98
|
+
none: false
|
99
|
+
requirements:
|
100
|
+
- - ">="
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
hash: 3
|
103
|
+
segments:
|
104
|
+
- 0
|
105
|
+
version: "0"
|
76
106
|
type: :development
|
107
|
+
version_requirements: *id006
|
108
|
+
- !ruby/object:Gem::Dependency
|
109
|
+
name: simplecov
|
77
110
|
prerelease: false
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
111
|
+
requirement: &id007 !ruby/object:Gem::Requirement
|
112
|
+
none: false
|
113
|
+
requirements:
|
114
|
+
- - ">="
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
hash: 3
|
117
|
+
segments:
|
118
|
+
- 0
|
119
|
+
version: "0"
|
120
|
+
type: :development
|
121
|
+
version_requirements: *id007
|
83
122
|
description: Static analysis of Cucumber tests made easy.
|
84
|
-
email:
|
123
|
+
email:
|
85
124
|
- morrow748@gmail.com
|
86
125
|
executables: []
|
126
|
+
|
87
127
|
extensions: []
|
128
|
+
|
88
129
|
extra_rdoc_files: []
|
89
|
-
|
130
|
+
|
131
|
+
files:
|
90
132
|
- .gitignore
|
91
133
|
- .simplecov
|
92
134
|
- Gemfile
|
@@ -104,18 +146,32 @@ files:
|
|
104
146
|
- features/analysis/test_comparison.feature
|
105
147
|
- features/analysis/test_manipulation.feature
|
106
148
|
- features/modeling/background_modeling.feature
|
149
|
+
- features/modeling/background_output.feature
|
107
150
|
- features/modeling/directory_modeling.feature
|
151
|
+
- features/modeling/directory_output.feature
|
108
152
|
- features/modeling/doc_string_modeling.feature
|
153
|
+
- features/modeling/doc_string_output.feature
|
109
154
|
- features/modeling/example_modeling.feature
|
155
|
+
- features/modeling/example_output.feature
|
110
156
|
- features/modeling/feature_file_modeling.feature
|
157
|
+
- features/modeling/feature_file_output.feature
|
111
158
|
- features/modeling/feature_modeling.feature
|
159
|
+
- features/modeling/feature_output.feature
|
112
160
|
- features/modeling/outline_modeling.feature
|
161
|
+
- features/modeling/outline_output.feature
|
113
162
|
- features/modeling/row_modeling.feature
|
163
|
+
- features/modeling/row_output.feature
|
114
164
|
- features/modeling/scenario_modeling.feature
|
165
|
+
- features/modeling/scenario_output.feature
|
115
166
|
- features/modeling/step_modeling.feature
|
167
|
+
- features/modeling/step_output.feature
|
116
168
|
- features/modeling/table_modeling.feature
|
169
|
+
- features/modeling/table_output.feature
|
117
170
|
- features/modeling/table_row_modeling.feature
|
171
|
+
- features/modeling/table_row_output.feature
|
118
172
|
- features/modeling/tag_modeling.feature
|
173
|
+
- features/modeling/tag_output.feature
|
174
|
+
- features/step_definitions/action_steps.rb
|
119
175
|
- features/step_definitions/background_steps.rb
|
120
176
|
- features/step_definitions/directory_steps.rb
|
121
177
|
- features/step_definitions/doc_string_steps.rb
|
@@ -128,6 +184,7 @@ files:
|
|
128
184
|
- features/step_definitions/table_steps.rb
|
129
185
|
- features/step_definitions/tag_steps.rb
|
130
186
|
- features/step_definitions/test_steps.rb
|
187
|
+
- features/step_definitions/verification_steps.rb
|
131
188
|
- features/step_definitions/world_steps.rb
|
132
189
|
- features/support/env.rb
|
133
190
|
- features/support/transforms.rb
|
@@ -200,31 +257,39 @@ files:
|
|
200
257
|
- spec/unit/test_element_unit_specs.rb
|
201
258
|
- spec/unit/world_unit_spec.rb
|
202
259
|
homepage: https://github.com/enkessler/cucumber_analytics
|
203
|
-
licenses:
|
260
|
+
licenses:
|
204
261
|
- MIT
|
205
|
-
metadata: {}
|
206
262
|
post_install_message:
|
207
263
|
rdoc_options: []
|
208
|
-
|
264
|
+
|
265
|
+
require_paths:
|
209
266
|
- lib
|
210
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
267
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
268
|
+
none: false
|
269
|
+
requirements:
|
270
|
+
- - ">="
|
271
|
+
- !ruby/object:Gem::Version
|
272
|
+
hash: 3
|
273
|
+
segments:
|
274
|
+
- 0
|
275
|
+
version: "0"
|
276
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
277
|
+
none: false
|
278
|
+
requirements:
|
279
|
+
- - ">="
|
280
|
+
- !ruby/object:Gem::Version
|
281
|
+
hash: 3
|
282
|
+
segments:
|
283
|
+
- 0
|
284
|
+
version: "0"
|
220
285
|
requirements: []
|
286
|
+
|
221
287
|
rubyforge_project:
|
222
|
-
rubygems_version:
|
288
|
+
rubygems_version: 1.8.25
|
223
289
|
signing_key:
|
224
|
-
specification_version:
|
225
|
-
summary: This gem provides an API to programmatically break down Cucumber feature
|
226
|
-
|
227
|
-
test_files:
|
290
|
+
specification_version: 3
|
291
|
+
summary: This gem provides an API to programmatically break down Cucumber feature files so that they can be inspected and analyzed in a straightforward manner.
|
292
|
+
test_files:
|
228
293
|
- features/analysis/directory_collection.feature
|
229
294
|
- features/analysis/feature_collection.feature
|
230
295
|
- features/analysis/feature_file_collection.feature
|
@@ -234,18 +299,32 @@ test_files:
|
|
234
299
|
- features/analysis/test_comparison.feature
|
235
300
|
- features/analysis/test_manipulation.feature
|
236
301
|
- features/modeling/background_modeling.feature
|
302
|
+
- features/modeling/background_output.feature
|
237
303
|
- features/modeling/directory_modeling.feature
|
304
|
+
- features/modeling/directory_output.feature
|
238
305
|
- features/modeling/doc_string_modeling.feature
|
306
|
+
- features/modeling/doc_string_output.feature
|
239
307
|
- features/modeling/example_modeling.feature
|
308
|
+
- features/modeling/example_output.feature
|
240
309
|
- features/modeling/feature_file_modeling.feature
|
310
|
+
- features/modeling/feature_file_output.feature
|
241
311
|
- features/modeling/feature_modeling.feature
|
312
|
+
- features/modeling/feature_output.feature
|
242
313
|
- features/modeling/outline_modeling.feature
|
314
|
+
- features/modeling/outline_output.feature
|
243
315
|
- features/modeling/row_modeling.feature
|
316
|
+
- features/modeling/row_output.feature
|
244
317
|
- features/modeling/scenario_modeling.feature
|
318
|
+
- features/modeling/scenario_output.feature
|
245
319
|
- features/modeling/step_modeling.feature
|
320
|
+
- features/modeling/step_output.feature
|
246
321
|
- features/modeling/table_modeling.feature
|
322
|
+
- features/modeling/table_output.feature
|
247
323
|
- features/modeling/table_row_modeling.feature
|
324
|
+
- features/modeling/table_row_output.feature
|
248
325
|
- features/modeling/tag_modeling.feature
|
326
|
+
- features/modeling/tag_output.feature
|
327
|
+
- features/step_definitions/action_steps.rb
|
249
328
|
- features/step_definitions/background_steps.rb
|
250
329
|
- features/step_definitions/directory_steps.rb
|
251
330
|
- features/step_definitions/doc_string_steps.rb
|
@@ -258,6 +337,7 @@ test_files:
|
|
258
337
|
- features/step_definitions/table_steps.rb
|
259
338
|
- features/step_definitions/tag_steps.rb
|
260
339
|
- features/step_definitions/test_steps.rb
|
340
|
+
- features/step_definitions/verification_steps.rb
|
261
341
|
- features/step_definitions/world_steps.rb
|
262
342
|
- features/support/env.rb
|
263
343
|
- features/support/transforms.rb
|
@@ -305,4 +385,3 @@ test_files:
|
|
305
385
|
- spec/unit/test_element_unit_spec.rb
|
306
386
|
- spec/unit/test_element_unit_specs.rb
|
307
387
|
- spec/unit/world_unit_spec.rb
|
308
|
-
has_rdoc:
|