cucumber_analytics 1.4.0 → 1.4.1
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.
- checksums.yaml +8 -8
- data/History.rdoc +6 -0
- data/README.rdoc +5 -0
- data/Rakefile +6 -2
- data/features/modeling/doc_string_modeling.feature +4 -0
- data/lib/cucumber_analytics/doc_string.rb +1 -1
- data/lib/cucumber_analytics/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ODMwNzMzY2IxOTc5ZGE2ODJkZmJiOWYyMTA2YzJmYTJhZmRmMzIyYg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MzIzZjdhMDQ4NDgzOWNjMTJlMGZlYjIwOGI5NTYwNmYwY2VmNGQ0Ng==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
OTZiODdmMzE4YzI5ZmU2NzhlYjIyYzJiYzYxYjIzZjdkNmFkY2E0YzdhOTMw
|
10
|
+
Yjg3ZjkwYTQxMmQ5NmFkNDc2YjBlYTMxNzgzYzFlNDM3YjU2MDM0YmNlYTQx
|
11
|
+
ZDNhZjQyMGZkMjI3NWI1ZWIxZTk2NjQwNzU1N2FkZTZhMDYxYWE=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
N2QyZDg5YTQ0ZDc0ZmNjNzNiYTFmY2JiOGFjYjUwYjlhOGU1M2EyNTQzZjNk
|
14
|
+
ZWU3YmNlYjFjOWJlOGY3NWFiMDM4Yjc5YWIwZmFkZmM4NzBmOWU0NDc2ZDRm
|
15
|
+
MDA1Nzc2ODhmNGM5MDRlNjZlMjY0YWQwZTliMjhiYTRhOWE3MmI=
|
data/History.rdoc
CHANGED
data/README.rdoc
CHANGED
@@ -72,6 +72,11 @@ rewritten into a single, reusable step.
|
|
72
72
|
* https://gist.github.com/enkessler/6408879 - Creating a step lexicon
|
73
73
|
* https://gist.github.com/enkessler/6519022 - Creating unique identifiers for all test cases
|
74
74
|
|
75
|
+
And why stop there? There are so many other tools that can be built with a little analysis!
|
76
|
+
|
77
|
+
* https://github.com/enkessler/cql
|
78
|
+
* https://github.com/enkessler/cuke_sniffer
|
79
|
+
|
75
80
|
== Contributing
|
76
81
|
|
77
82
|
1. Fork it
|
data/Rakefile
CHANGED
@@ -10,10 +10,14 @@ task :clear_coverage do
|
|
10
10
|
end
|
11
11
|
|
12
12
|
desc 'Run all acceptance tests for the gem'
|
13
|
-
Cucumber::Rake::Task.new(:tests)
|
13
|
+
Cucumber::Rake::Task.new(:tests) do |t|
|
14
|
+
t.cucumber_opts = "-t ~@wip -t ~@off"
|
15
|
+
end
|
14
16
|
|
15
17
|
desc 'Run all API specifications for the gem'
|
16
|
-
RSpec::Core::RakeTask.new(:specs)
|
18
|
+
RSpec::Core::RakeTask.new(:specs) do |t|
|
19
|
+
t.rspec_opts = "-t ~wip -t ~off"
|
20
|
+
end
|
17
21
|
|
18
22
|
desc 'Run All The Things'
|
19
23
|
task :everything => :clear_coverage do
|
@@ -18,7 +18,9 @@ Feature: Doc String elements can be modeled.
|
|
18
18
|
* some wordy step:
|
19
19
|
\"\"\" content type
|
20
20
|
some text
|
21
|
+
|
21
22
|
some more text
|
23
|
+
|
22
24
|
\"\"\"
|
23
25
|
* some wordy step:
|
24
26
|
\"\"\"
|
@@ -37,7 +39,9 @@ Feature: Doc String elements can be modeled.
|
|
37
39
|
Scenario: The doc string's contents are modeled.
|
38
40
|
Then the step "1" doc string has the following contents:
|
39
41
|
| 'some text' |
|
42
|
+
| ' ' |
|
40
43
|
| ' some more text' |
|
44
|
+
| '' |
|
41
45
|
And the step "2" doc string contents are empty
|
42
46
|
|
43
47
|
Scenario Outline: Doc String models pass all other specifications
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cucumber_analytics
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.4.
|
4
|
+
version: 1.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eric Kessler
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-12-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gherkin
|