cucumber-chef 2.1.0.rc.14 → 2.1.0.rc.15
Sign up to get free protection for your applications and to get access to all the features.
@@ -75,9 +75,9 @@ end
|
|
75
75
|
|
76
76
|
Then /^I should( not)? see the "([^\"]*)" of "([^\"]*)" in the output$/ do |boolean, key, name|
|
77
77
|
if (!boolean)
|
78
|
-
@output.should =~ /#{$test_lab.
|
78
|
+
@output.should =~ /#{$test_lab.containers.to_a[name][key.downcase.to_sym]}/i
|
79
79
|
else
|
80
|
-
@output.should_not =~ /#{$test_lab.
|
80
|
+
@output.should_not =~ /#{$test_lab.containers.to_a[name][key.downcase.to_sym]}/i
|
81
81
|
end
|
82
82
|
end
|
83
83
|
|
@@ -24,7 +24,7 @@ module Cucumber
|
|
24
24
|
|
25
25
|
################################################################################
|
26
26
|
|
27
|
-
VERSION = "2.1.0.rc.
|
27
|
+
VERSION = "2.1.0.rc.15" unless const_defined?(:VERSION)
|
28
28
|
|
29
29
|
################################################################################
|
30
30
|
|