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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 75e5137fdef8e8b8e7dccb7b4168ef20ce7f7889
4
- data.tar.gz: 7bb6ef6c0fb5606d4aa8f4e1d21db850db78f622
3
+ metadata.gz: 8bdca0bff742cd814541f05bb320bdbd224d663f
4
+ data.tar.gz: ce8fb6e808f9b1138ed14fec5cc4cc1c85d0da5d
5
5
  SHA512:
6
- metadata.gz: 7c131f73ab23d27dbbd2cd982c135052d291b13dd8807fd22ecd1d34e4f718ee2f902bed97bd645463ddd86a051d2c3d067ea1e9349680f84942b7b0ab95ba1c
7
- data.tar.gz: c70046183b2c3da5d5fb65129cde1f23a090c348a3654db8c9d47307309f3beacfd35b5b65c6d68324da4457f9c7007e242111b1606fc405a33dfe2c496c1d34
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
- $browsers.each do |b|
5
- describe "The template using the '#{b}' browser",:template do
6
- before(:all) do
7
- @browser = initBrowser(b,:platform => :VISTA)
8
- @yale_page = YalePage.new(@browser)
9
- @yale_page.goto
10
- end
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
- it 'will always fail' do
13
- expect(false).to be_true
14
- end
12
+ it 'will always fail' do
13
+ expect(false).to be_true
14
+ end
15
15
 
16
- it 'is pending'
16
+ it 'is pending'
17
17
 
18
- after(:all) do
19
- @browser.close rescue nil
20
- end
21
- end
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
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "magicspec"
8
- s.version = "0.0.7"
8
+ s.version = "0.0.8"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["dmfranko"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: magicspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - dmfranko