frameworks-capybara 0.2.31 → 0.2.32
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +3 -0
- data/Gemfile.lock +1 -1
- data/lib/version.rb +1 -1
- data/spec/frameworks_capybara_spec.rb +4 -8
- metadata +3 -3
data/CHANGES
CHANGED
data/Gemfile.lock
CHANGED
data/lib/version.rb
CHANGED
@@ -544,11 +544,9 @@ describe CapybaraSetup do
|
|
544
544
|
secmod_data = write_random_data(@secmod_db)
|
545
545
|
|
546
546
|
setup = CapybaraSetup.new
|
547
|
-
result =
|
548
|
-
|
549
|
-
result = update_firefox_profile_with_certificates(profile, certificate_path)
|
547
|
+
result = setup.instance_exec(profile, @cert_dir) { |profile, certificate_path|
|
548
|
+
update_firefox_profile_with_certificates(profile, certificate_path)
|
550
549
|
}
|
551
|
-
|
552
550
|
profile_path = result.layout_on_disk
|
553
551
|
compare_file_data(profile_path, 'cert8.db', cert8_data)
|
554
552
|
compare_file_data(profile_path, 'key3.db', key3_data)
|
@@ -568,11 +566,9 @@ describe CapybaraSetup do
|
|
568
566
|
secmod_data = write_random_data(@secmod_db)
|
569
567
|
|
570
568
|
setup = CapybaraSetup.new
|
571
|
-
result =
|
572
|
-
|
573
|
-
result = update_firefox_profile_with_certificates(profile, certificate_path, certificate_prefix)
|
569
|
+
result = setup.instance_exec(profile, @cert_dir, cert_prefix) { |profile, certificate_path, certificate_prefix, result|
|
570
|
+
update_firefox_profile_with_certificates(profile, certificate_path, certificate_prefix)
|
574
571
|
}
|
575
|
-
|
576
572
|
profile_path = result.layout_on_disk
|
577
573
|
compare_file_data(profile_path, 'cert8.db', cert8_data)
|
578
574
|
compare_file_data(profile_path, 'key3.db', key3_data)
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: frameworks-capybara
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 87
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 2
|
9
|
-
-
|
10
|
-
version: 0.2.
|
9
|
+
- 32
|
10
|
+
version: 0.2.32
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- matt robbins
|