Sha256: c8ada7eab1384506e2250d0b9ad208e59ef354814ea309a396e3fe4fc7558b5d

Contents?: true

Size: 585 Bytes

Versions: 3

Compression:

Stored size: 585 Bytes

Contents

#encoding: utf-8
require File.expand_path 'app/spec/spec_helper'

# Remember to tag your tests!
# You can add multuple tags
describe "The browser tempate",:template do
	# These are the things you do to setup you test.
	# For example start the browser or gather data.
	before(:all) do
		@browser = Watir::Browser.sauce_start($caps)
		# You would also initialize page-object here
	end

	it 'will always fail' do
  		expect(false).to be_true
	end

	it 'is pending'

	# Cleanup
	# For example, logout and other such cleanup activities.
	after(:all) do
		@browser.close rescue nil
	end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
magicspec-0.0.11 lib/magicspec/templates/browser_spec_template.rb.tt
magicspec-0.0.10 lib/magicspec/templates/browser_spec_template.rb.tt
magicspec-0.0.9 lib/magicspec/templates/browser_spec_template.rb.tt