magicspec 0.0.7 → 0.0.8
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/magicspec/templates/browser_spec_template.rb.tt +17 -16
- data/magicspec.gemspec +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: 8bdca0bff742cd814541f05bb320bdbd224d663f
|
4
|
+
data.tar.gz: ce8fb6e808f9b1138ed14fec5cc4cc1c85d0da5d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b6d90aebc173c212695f42bbbf73206564598c79b4dbabe5af4f2f164b5986ea88d7e799824de13e233c1c6d64513c4a6d87f87a549a08032fdd9edf881ee24e
|
7
|
+
data.tar.gz: 900db65268d23a893a31c8247c593fff232c25819b5dfcbef584b35ab0c5eaea76c3b884f053323a9cade9368680f1633c8500fbd7dce4fde4227594599a7a18
|
@@ -1,22 +1,23 @@
|
|
1
1
|
#encoding: utf-8
|
2
2
|
require File.expand_path 'app/spec/spec_helper'
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
4
|
+
describe "The template using the '#{b}' browser",:template do
|
5
|
+
# These are the things you do to setup you test.
|
6
|
+
# For example start the browser or gather data.
|
7
|
+
before(:all) do
|
8
|
+
@browser = Watir::Browser.sauce_start($caps)
|
9
|
+
# You would also initialize page-object here
|
10
|
+
end
|
11
11
|
|
12
|
-
|
13
|
-
|
14
|
-
|
12
|
+
it 'will always fail' do
|
13
|
+
expect(false).to be_true
|
14
|
+
end
|
15
15
|
|
16
|
-
|
16
|
+
it 'is pending'
|
17
17
|
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
end
|
18
|
+
# Cleanup
|
19
|
+
# For example, logout and other such cleanup activities.
|
20
|
+
after(:all) do
|
21
|
+
@browser.close rescue nil
|
22
|
+
end
|
23
|
+
end
|
data/magicspec.gemspec
CHANGED