aruba 0.14.0 → 0.14.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/History.md +4 -0
- data/lib/aruba/cucumber/testing_frameworks.rb +2 -2
- data/lib/aruba/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7869abee326f90c71c874dd78dcf9d4e6ae37593
|
4
|
+
data.tar.gz: ce4f3718d708038d6ee76b9372c7da84348ff525
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a2e84245415c30ed8b5bd25a5fdc0d7c024fe71175658074eb15f30eb55f4697f0f909d809054c153c26a6f50f87a9ebaf9de1a4a1f07b71213c06b6f51672b
|
7
|
+
data.tar.gz: 2a7c38752395afae31e4cdb67b92c7faa9996338a41bcfc0450e46c738522e54f29225575f700da753b4e65737da5f7b63fad1743db5f029fd6bd411d3f1928e
|
data/History.md
CHANGED
@@ -54,6 +54,10 @@
|
|
54
54
|
|
55
55
|
# RELEASED
|
56
56
|
|
57
|
+
## [v0.14.1](https://github.com/cucumber/aruba/compare/v0.14.0...v0.14.1)
|
58
|
+
|
59
|
+
* Fixed bug in framework step
|
60
|
+
|
57
61
|
## [v0.14.0](https://github.com/cucumber/aruba/compare/v0.13.0...v0.14.0)
|
58
62
|
|
59
63
|
* Add `<project_root>/exe` to search path for commands: This is the new default if you setup a
|
@@ -47,10 +47,10 @@ end
|
|
47
47
|
# RSpec
|
48
48
|
Then /^the spec(?:s)? should( not)?(?: all)? pass with( regex)?:$/ do |negated, regex, string|
|
49
49
|
if negated
|
50
|
-
step 'the output should contain "
|
50
|
+
step 'the output should not contain "0 failures"'
|
51
51
|
step 'the exit status should be 1'
|
52
52
|
else
|
53
|
-
step 'the output should
|
53
|
+
step 'the output should contain "0 failures"'
|
54
54
|
step 'the exit status should be 0'
|
55
55
|
end
|
56
56
|
|
data/lib/aruba/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aruba
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.14.
|
4
|
+
version: 0.14.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aslak Hellesøy
|
@@ -13,7 +13,7 @@ authors:
|
|
13
13
|
autorequire:
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
|
-
date: 2016-03-
|
16
|
+
date: 2016-03-17 00:00:00.000000000 Z
|
17
17
|
dependencies:
|
18
18
|
- !ruby/object:Gem::Dependency
|
19
19
|
name: cucumber
|
@@ -475,7 +475,7 @@ rubyforge_project:
|
|
475
475
|
rubygems_version: 2.5.1
|
476
476
|
signing_key:
|
477
477
|
specification_version: 4
|
478
|
-
summary: aruba-0.14.
|
478
|
+
summary: aruba-0.14.1
|
479
479
|
test_files:
|
480
480
|
- features/api/command/find_command.feature
|
481
481
|
- features/api/command/last_command_started.feature
|