acceptance_test 1.10.3 → 1.10.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/CHANGES +4 -0
- data/lib/acceptance_test/version.rb +1 -1
- data/spec/{wikipedia/acceptance → acceptance}/search_with_config_spec.rb +0 -0
- data/spec/{wikipedia/acceptance → acceptance}/search_with_drivers_spec.rb +0 -0
- data/spec/{wikipedia/acceptance → acceptance}/search_with_example_steps_spec.rb +0 -0
- data/spec/{wikipedia/acceptance → acceptance}/search_with_pages_spec.rb +0 -0
- data/spec/{wikipedia/acceptance → acceptance}/search_with_steps_spec.rb +0 -0
- data/spec/spec_helper.rb +5 -0
- data/spec/wikipedia/support/steps/search_with_pages_steps.rb +0 -20
- data/spec/wikipedia/support/steps/search_with_table_steps.rb +1 -0
- metadata +11 -11
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NGFkZDBhOTUzOGE2MjlhYzRjY2EzMWQzNDc4YTA1NjYzMzBjOWU2ZQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NjE5ODllODY1NGRiMGJmNzFhN2NlMmRjMzNhZGI3MTY3YzhmOWI4OQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MDc4N2Y2OWJkNGZmOTY1M2I5MTdkMDM5OGFmNDQ2NzU1ZWVjMmUwMGFjNTlj
|
10
|
+
YTU4ZmM1ODk0NDliZWIyMjE5NGUyNmEzZTU1Y2MwNjk4MDk5MjQ5NjgxNTJm
|
11
|
+
N2YzYzZkNTdjMjAwZGUxODMyNmEzZTdhMmQ3ODdmYTNlZjgwNWI=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MTE4YThmMDE0YTZjMTdiYmJkMzQ3NjkzZjFjZWQxOTZlYmI0OWNmMTk5NzEz
|
14
|
+
ZjdlNWI4MzA5ZmZhYmFhNjNlOGFjMTYxMThiYjdhZmNiNjEwYjdmY2Q3YTJj
|
15
|
+
Y2MyNjE4NzhmMzMwZDM3Mjg4ZjdmNDQ3ZmI1OWFmMWE0YWZkOTc=
|
data/CHANGES
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/spec/spec_helper.rb
CHANGED
@@ -4,3 +4,8 @@ ENV['CONFIG_FILE'] = "spec/wikipedia/acceptance_config.yml"
|
|
4
4
|
ENV['DATA_DIR'] = "spec/wikipedia/acceptance_data"
|
5
5
|
|
6
6
|
AcceptanceConfig.instance.configure "spec", "wikipedia"
|
7
|
+
|
8
|
+
RSpec.configure do |c|
|
9
|
+
# c.add_formatter 'progress'
|
10
|
+
c.add_formatter 'documentation'
|
11
|
+
end
|
@@ -4,30 +4,10 @@ require 'wikipedia_pages'
|
|
4
4
|
steps_for :search_with_pages do
|
5
5
|
include CommonSteps
|
6
6
|
|
7
|
-
attr_reader :page_set
|
8
|
-
|
9
7
|
def initialize *params
|
10
8
|
puts Capybara.current_driver
|
11
9
|
|
12
10
|
super
|
13
11
|
end
|
14
12
|
|
15
|
-
# step :visit_home_page, "I am on wikipedia.com"
|
16
|
-
#
|
17
|
-
# step :enter_word, "I enter word :word"
|
18
|
-
|
19
|
-
# step :submit_request, "I submit request"
|
20
|
-
|
21
|
-
# step "I am on wikipedia.com" do
|
22
|
-
# page_set.visit_home_page
|
23
|
-
# end
|
24
|
-
|
25
|
-
# step "I enter word :word" do |word|
|
26
|
-
# page_set.enter_word word
|
27
|
-
# end
|
28
|
-
|
29
|
-
# step "I submit request" do
|
30
|
-
# page_set.submit_request
|
31
|
-
# end
|
32
|
-
|
33
13
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: acceptance_test
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.10.
|
4
|
+
version: 1.10.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alexander Shvets
|
@@ -252,13 +252,13 @@ files:
|
|
252
252
|
- lib/acceptance_test/turnip_ext.rb
|
253
253
|
- lib/acceptance_test/version.rb
|
254
254
|
- lib/tasks/rspec.rake
|
255
|
+
- spec/acceptance/search_with_config_spec.rb
|
256
|
+
- spec/acceptance/search_with_drivers_spec.rb
|
257
|
+
- spec/acceptance/search_with_example_steps_spec.rb
|
258
|
+
- spec/acceptance/search_with_pages_spec.rb
|
259
|
+
- spec/acceptance/search_with_steps_spec.rb
|
255
260
|
- spec/spec_helper.rb
|
256
261
|
- spec/support/steps/common_steps.rb
|
257
|
-
- spec/wikipedia/acceptance/search_with_config_spec.rb
|
258
|
-
- spec/wikipedia/acceptance/search_with_drivers_spec.rb
|
259
|
-
- spec/wikipedia/acceptance/search_with_example_steps_spec.rb
|
260
|
-
- spec/wikipedia/acceptance/search_with_pages_spec.rb
|
261
|
-
- spec/wikipedia/acceptance/search_with_steps_spec.rb
|
262
262
|
- spec/wikipedia/acceptance_config.yml
|
263
263
|
- spec/wikipedia/acceptance_data/data.csv
|
264
264
|
- spec/wikipedia/acceptance_data/data.yml
|
@@ -304,13 +304,13 @@ test_files:
|
|
304
304
|
- features/wikipedia/support/env.rb
|
305
305
|
- features/wikipedia/wikipedia_search.feature
|
306
306
|
- features/wikipedia/wikipedia_search_from_csv.feature
|
307
|
+
- spec/acceptance/search_with_config_spec.rb
|
308
|
+
- spec/acceptance/search_with_drivers_spec.rb
|
309
|
+
- spec/acceptance/search_with_example_steps_spec.rb
|
310
|
+
- spec/acceptance/search_with_pages_spec.rb
|
311
|
+
- spec/acceptance/search_with_steps_spec.rb
|
307
312
|
- spec/spec_helper.rb
|
308
313
|
- spec/support/steps/common_steps.rb
|
309
|
-
- spec/wikipedia/acceptance/search_with_config_spec.rb
|
310
|
-
- spec/wikipedia/acceptance/search_with_drivers_spec.rb
|
311
|
-
- spec/wikipedia/acceptance/search_with_example_steps_spec.rb
|
312
|
-
- spec/wikipedia/acceptance/search_with_pages_spec.rb
|
313
|
-
- spec/wikipedia/acceptance/search_with_steps_spec.rb
|
314
314
|
- spec/wikipedia/acceptance_config.yml
|
315
315
|
- spec/wikipedia/acceptance_data/data.csv
|
316
316
|
- spec/wikipedia/acceptance_data/data.yml
|