Sha256: 7a9e6ad2d0da61f0c2e9fda3dbcc202ab5d4ce7364cab9d380b449b8615e362f

Contents?: true

Size: 745 Bytes

Versions: 14

Compression:

Stored size: 745 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

14 entries across 14 versions & 1 rubygems

Version Path
watirsplash-0.2.14 templates/project/config.rb
watirsplash-0.2.12 templates/project/config.rb
watirsplash-0.2.11 templates/project/config.rb
watirsplash-0.2.10 templates/project/config.rb
watirsplash-0.2.9 templates/project/config.rb
watirsplash-0.2.8 templates/project/config.rb
watirsplash-0.2.7 templates/project/config.rb
watirsplash-0.2.6 templates/project/config.rb
watirsplash-0.2.5 templates/project/config.rb
watirsplash-0.2.4 templates/project/config.rb
watirsplash-0.2.3 templates/project/config.rb
watirsplash-0.2.2 templates/project/config.rb
watirsplash-0.2.1 templates/project/config.rb
watirsplash-0.2.0 templates/project/config.rb