launcuke 0.0.6 → 0.0.7
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 +4 -4
- data/lib/launcuke/runner.rb +2 -2
- data/lib/launcuke/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 12232e30f61028e8625619672390ee6ba84c414d
|
4
|
+
data.tar.gz: f3e81f5654dca4b452d27aace8d40f6c36a3ebc3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: acf5ce6ab44cb99953e908bdbf15be8341277c550158d3753dd79e0ecfd960495ffe1b41d30f307621e6433048719ece0c49f49265e95876df69f6fefa3c410b
|
7
|
+
data.tar.gz: 3d54aacf6ede5184fc1ab3ef4c53c60d99e1ba452e434ba3f192742ad4b0d44ef003cdb2d02d12ac4787997ce78ee23be4aa9b25bb277083ef040755f742246c
|
data/lib/launcuke/runner.rb
CHANGED
@@ -129,7 +129,7 @@ module Launcuke
|
|
129
129
|
when 'sequential'
|
130
130
|
p "Running test in sequential"
|
131
131
|
results = []
|
132
|
-
|
132
|
+
features_dirs.each { |features_dir|
|
133
133
|
report_file_path = File.join(reports_path, "#{features_dir.dir_name}.html")
|
134
134
|
feature_full_path = File.join(features_root_path, "#{features_dir.dir_name}")
|
135
135
|
main_command = %W[bundle exec cucumber #{feature_full_path}]
|
@@ -154,7 +154,7 @@ module Launcuke
|
|
154
154
|
result
|
155
155
|
}
|
156
156
|
end
|
157
|
-
|
157
|
+
p results
|
158
158
|
global_exit_status = results.inject(0) { |acc, result|
|
159
159
|
result ? acc : acc + 1
|
160
160
|
}
|
data/lib/launcuke/version.rb
CHANGED