bddfire 2.0.1 → 2.0.2
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/README.markdown +4 -2
- data/lib/bddfire/version.rb +1 -1
- data/scaffold/accessibility/features/04_page_titles.feature +1 -1
- data/scaffold/accessibility/features/step_definitions/page_title.rb +0 -4
- data/scaffold/config_files/docker.sh +1 -1
- metadata +2 -3
- data/scaffold/accessibility/features/02_javascript.feature +0 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ffe7a01b873dcefe0ed504afcfa0b9272b3c0dfc
|
|
4
|
+
data.tar.gz: eec84bb9fb2cf28f2d8f4ea86dbd2d4254f288c6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3a50d0fc953d3388b0dc6abbe6f9cfcbb1fc534361d70d06d9bbd89a0928e14b00427b76872ba7479e5b07416eb6265e11c262150cfc7d5e9db8e1d7263f54fb
|
|
7
|
+
data.tar.gz: 8a2f9520ff0544b9065dd7e9768419d85f1ad59bac499a006151e0f5908f9a1cf242e33e8d241179a61735d02104fda0d48e4f47111e4a21e583371dd5e9533e
|
data/README.markdown
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
BDDfire: Automate Mobile & Web apps with less code. An instant Ruby-Cucumber BDD framework which supports various popular open-source libraries like Capybara, Selenium-WebDriver, Poltergeist, Relish, Cuke_sniffer, Rubocop, Appium, Saucelabs, Browserstack. Generate default toolkit around BDD with cucumber and friends. BDDfire can do API testing with RestClient. It also added support for Docker, Gatling, Axe Accessibility Engine
|
|
4
4
|
|
|
5
|
-
### BDDfire: Instant Ruby-Cucumber Framework with Docker, Gatling, Accessibility Support
|
|
5
|
+
### BDDfire: Instant Ruby-Cucumber Framework with Docker, Gatling, Accessibility, REST API Testing Support
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
@@ -52,6 +52,8 @@ BDDfire has inbuilt support for the API Testing. BDDfire uses RestClient to make
|
|
|
52
52
|
|
|
53
53
|
You can use predefined API Steps [API based](https://github.com/Shashikant86/bddfire/blob/master/pre-defined-steps/rest_api_steps.md)
|
|
54
54
|
|
|
55
|
+

|
|
56
|
+
|
|
55
57
|
## Load Testing : Gatling
|
|
56
58
|
You can optionally install Gatling load testing setup.
|
|
57
59
|
|
|
@@ -141,7 +143,7 @@ You can run your scenarios in Google Chrome
|
|
|
141
143
|
$ bundle exec rake api
|
|
142
144
|
|
|
143
145
|
|
|
144
|
-

|
|
145
147
|
|
|
146
148
|
|
|
147
149
|
|
data/lib/bddfire/version.rb
CHANGED
|
@@ -61,7 +61,7 @@ function run_cucumber_tests {
|
|
|
61
61
|
echo "\n Running Bundler"
|
|
62
62
|
docker exec ${CONTAINER_NAME} bundle install --path vendor/
|
|
63
63
|
echo "Now running cucumber tests"
|
|
64
|
-
docker exec ${CONTAINER_NAME} bundle exec
|
|
64
|
+
docker exec ${CONTAINER_NAME} bundle exec cucumber -p poltergeist
|
|
65
65
|
exit $?
|
|
66
66
|
}
|
|
67
67
|
|
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.2
|
|
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-04-
|
|
11
|
+
date: 2016-04-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -243,7 +243,6 @@ files:
|
|
|
243
243
|
- pre-defined-steps/headless_steps.md
|
|
244
244
|
- pre-defined-steps/rest_api_steps.md
|
|
245
245
|
- scaffold/accessibility/features/01_validation.feature
|
|
246
|
-
- scaffold/accessibility/features/02_javascript.feature
|
|
247
246
|
- scaffold/accessibility/features/03_language.feature
|
|
248
247
|
- scaffold/accessibility/features/04_page_titles.feature
|
|
249
248
|
- scaffold/accessibility/features/05_main_landmark.feature
|