1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00
teamcapybara--capybara/spec/rspec/features_spec.rb
Jo Liss 9fd6c85949 Set Capybara.app at spec run time, not at definition time
This bug got triggered on Travis.
2012-01-03 17:51:29 +01:00

44 lines
1.1 KiB
Ruby

require 'spec_helper'
require 'capybara/rspec'
RSpec.configuration.before(:each, :example_group => {:file_path => __FILE__}) do
@in_filtered_hook = true
end
feature "Capybara's feature DSL" do
background do
Capybara.app = TestApp
@in_background = true
end
scenario "includes Capybara" do
visit('/')
page.should have_content('Hello world!')
end
scenario "preserves description" do
example.metadata[:full_description].should == "Capybara's feature DSL preserves description"
end
scenario "allows driver switching", :driver => :selenium do
Capybara.current_driver.should == :selenium
end
scenario "runs background" do
@in_background.should be_true
end
scenario "runs hooks filtered by file path" do
@in_filtered_hook.should be_true
end
scenario "doesn't pollute the Object namespace" do
Object.new.respond_to?(:feature, true).should be_false
end
end
feature "Capybara's feature DSL with driver", :driver => :culerity do
scenario "switches driver" do
Capybara.current_driver.should == :culerity
end
end