Sha256: 9e1e9e033a649c5bb2d5be26a1f468ef496af699bccdb696cd7bbb4c82b1695f

Contents?: true

Size: 497 Bytes

Versions: 7

Compression:

Stored size: 497 Bytes

Contents

require 'spec_helper'

feature "Static Pages" do

  # Here's a placeholder feature spec to use as an example, uses the default driver.
  scenario "/ should include the application name in its title" do
    visit root_path

    expect(page).to have_title "App Prototype"
  end

  # Another contrived example, this one relies on the javascript driver.
  scenario "/ should include the warm closing text 'Enjoy!'", js: true do
    visit root_path

    expect(page).to have_content "Enjoy!"
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
raygun-0.0.34 rails_40/spec/features/pages_spec.rb
raygun-0.0.34.pre2 rails_40/spec/features/pages_spec.rb
raygun-0.0.33 rails_40/spec/features/pages_spec.rb
raygun-0.0.32 rails_40/spec/features/pages_spec.rb
raygun-0.0.31 rails_40/spec/features/pages_spec.rb
raygun-0.0.30 rails_40/spec/features/pages_spec.rb
raygun-0.0.29 rails_40/spec/features/pages_spec.rb