bddfire 2.0.2 → 2.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/bddfire +1 -1
- data/lib/bddfire/version.rb +1 -1
- data/scaffold/config_files/Rakefile +8 -8
- data/scaffold/features/{google.feature → bddfire.feature} +1 -1
- data/scaffold/features/step_definitions/{google_steps.rb → bddfire_steps.rb} +0 -0
- data/scaffold/scripts/accessibility +4 -0
- data/scaffold/scripts/load +4 -0
- metadata +6 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7432cacd5c9399d7312333d015b74d4f3a39b16f
|
4
|
+
data.tar.gz: 665f1b752dcf82ddc00b45657b911d9a598ac28e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6effa5fad6bab56c6ee562b135b0b482019452f9eda544c85cdb99326b5b7f5ec460430368bf58214f19e4dbb382e62b8f182da384a09322bf17ce5a12b269a9
|
7
|
+
data.tar.gz: 0f4402e37bc777a0448ee1bd6e8f64dd280efd8916c6f39d954926417d49a2e14462f7db1aeb3ed287452f740b2a47162758741ffca8ad33c955e8cc3c4664e6
|
data/bin/bddfire
CHANGED
data/lib/bddfire/version.rb
CHANGED
@@ -18,7 +18,7 @@ end
|
|
18
18
|
|
19
19
|
task :parallel_run do
|
20
20
|
puts '===== Executing Tests in parallel'
|
21
|
-
system 'bundle exec parallel_cucumber features/ -o "-p parallel -p
|
21
|
+
system 'bundle exec parallel_cucumber features/ -o "-p parallel -p pretty" -n 10'
|
22
22
|
puts ' ====== Parallel execution finished and cucumber_failure.log created ========='
|
23
23
|
end
|
24
24
|
|
@@ -40,31 +40,31 @@ YARD::Rake::YardocTask.new(:yard) do |t|
|
|
40
40
|
end
|
41
41
|
|
42
42
|
Cucumber::Rake::Task.new(:selenium) do |t|
|
43
|
-
t.cucumber_opts = 'features -p selenium --format pretty --profile html '
|
43
|
+
t.cucumber_opts = 'features -p selenium --format pretty --profile html -p ~@api '
|
44
44
|
end
|
45
45
|
|
46
46
|
Cucumber::Rake::Task.new(:poltergeist) do |t|
|
47
|
-
t.cucumber_opts = 'features -p poltergeist --format pretty --profile html '
|
47
|
+
t.cucumber_opts = 'features -p poltergeist --format pretty --profile html -p ~@api '
|
48
48
|
end
|
49
49
|
|
50
50
|
Cucumber::Rake::Task.new(:chrome) do |t|
|
51
|
-
t.cucumber_opts = 'features -p chrome --format pretty --profile html '
|
51
|
+
t.cucumber_opts = 'features -p chrome --format pretty --profile html -p ~@api '
|
52
52
|
end
|
53
53
|
|
54
54
|
Cucumber::Rake::Task.new(:sauce) do |t|
|
55
|
-
t.cucumber_opts = 'features -p sauce --format pretty --profile html '
|
55
|
+
t.cucumber_opts = 'features -p sauce --format pretty --profile html -p ~@api '
|
56
56
|
end
|
57
57
|
|
58
58
|
Cucumber::Rake::Task.new(:browserstack) do |t|
|
59
|
-
t.cucumber_opts = 'features -p browserstack --format pretty --profile html '
|
59
|
+
t.cucumber_opts = 'features -p browserstack --format pretty --profile html -p ~@api '
|
60
60
|
end
|
61
61
|
|
62
62
|
Cucumber::Rake::Task.new(:testingbot) do |t|
|
63
|
-
t.cucumber_opts = 'features -p testingbot --format pretty --profile html '
|
63
|
+
t.cucumber_opts = 'features -p testingbot --format pretty --profile html -p ~@api '
|
64
64
|
end
|
65
65
|
|
66
66
|
Cucumber::Rake::Task.new(:appium) do |t|
|
67
|
-
t.cucumber_opts = "features -p appium_android_web ADB_SERIAL=#{ADB_SERIAL} --format pretty --profile html "
|
67
|
+
t.cucumber_opts = "features -p appium_android_web ADB_SERIAL=#{ADB_SERIAL} --format pretty --profile html -p ~@api "
|
68
68
|
end
|
69
69
|
|
70
70
|
task :cuke_sniffer do
|
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bddfire
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shashikant Jagtap
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-05-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -280,9 +280,9 @@ files:
|
|
280
280
|
- scaffold/config_files/docker.sh
|
281
281
|
- scaffold/config_files/package.json
|
282
282
|
- scaffold/features/api.feature
|
283
|
-
- scaffold/features/
|
283
|
+
- scaffold/features/bddfire.feature
|
284
284
|
- scaffold/features/pages/HomePage.rb
|
285
|
-
- scaffold/features/step_definitions/
|
285
|
+
- scaffold/features/step_definitions/bddfire_steps.rb
|
286
286
|
- scaffold/features/support/env.rb
|
287
287
|
- scaffold/features/support/hooks.rb
|
288
288
|
- scaffold/load/Dockerfile
|
@@ -302,7 +302,9 @@ files:
|
|
302
302
|
- scaffold/rake_tasks/rspec.rb
|
303
303
|
- scaffold/rake_tasks/rubocop.rb
|
304
304
|
- scaffold/rake_tasks/yard.rb
|
305
|
+
- scaffold/scripts/accessibility
|
305
306
|
- scaffold/scripts/ci_script
|
307
|
+
- scaffold/scripts/load
|
306
308
|
- scaffold/scripts/run_appium
|
307
309
|
homepage: https://github.com/Shashikant86/bddfire
|
308
310
|
licenses:
|