Sha256: 5154d384bd377e9211ee242089c34df9a7c390db34de8ff9158e5a00213654fd

Contents?: true

Size: 735 Bytes

Versions: 3

Compression:

Stored size: 735 Bytes

Contents

# Config for your application
module Config
  module Application
    # URL, which will be opened by every test
    # replace it with the URL of your application under test
    # or if ui-test-common is used then
    # URL = Config.full_url("/relative/url/index.html")
    URL = "about:blank"
  end
end

# A global configuration for specs in this project, which will include by default
# a ApplicationHelper module and open Config::Application::URL with
# the browser.
# You can read more about RSpec-s before and after syntax from:
# http://rspec.info/documentation/before_and_after.html
Spec::Runner.configure do |config|
  config.include(ApplicationHelper)
  config.before(:all) {goto Config::Application::URL}
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
watirspec-0.1.9.1 templates/project/config.rb
watirsplash-0.1.9 templates/project/config.rb
watirspec-0.1.8 templates/project/config.rb