2012-12-12 05:33:06 +00:00
|
|
|
Given /^I am on the home page$/ do
|
2013-02-04 03:06:55 +00:00
|
|
|
$home_page_session = Capybara::Session.new(Capybara.current_driver, Capybara.app)
|
2013-02-03 17:19:39 +00:00
|
|
|
$home_page_session.visit root_path
|
2012-12-12 05:33:06 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
Then /^I should see "(.*?)"$/ do |content|
|
2013-02-03 17:19:39 +00:00
|
|
|
$home_page_session.find("div.content-head h1").should have_content content
|
2012-12-12 05:33:06 +00:00
|
|
|
end
|
|
|
|
|
|