middleman/features/step_definitions/middleman_steps.rb

38 lines
1 KiB
Ruby
Raw Normal View History

2009-11-23 00:37:11 +01:00
Given /^"([^\"]*)" feature is "([^\"]*)"$/ do |feature, state|
sandbox_server = Middleman.server do
if state == "enabled"
activate(feature.to_sym)
end
set :environment, @current_env || :development
end
@browser = Rack::Test::Session.new(Rack::MockSession.new(sandbox_server.new))
2009-11-23 00:37:11 +01:00
end
2011-05-29 17:26:58 +02:00
Given /^current environment is "([^\"]*)"$/ do |env|
@current_env = env.to_sym
end
Given /^the Server is running$/ do
sandbox_server = Middleman.server
@browser = Rack::Test::Session.new(Rack::MockSession.new(sandbox_server.new))
2009-11-30 20:32:02 +01:00
end
2009-11-23 00:37:11 +01:00
When /^I go to "([^\"]*)"$/ do |url|
@browser.get(url)
end
Then /^I should see "([^\"]*)"$/ do |expected|
@browser.last_response.body.should include(expected)
end
2011-04-25 22:45:54 +02:00
Then /^I should see '([^\']*)'$/ do |expected|
@browser.last_response.body.should include(expected)
end
2009-11-23 00:37:11 +01:00
Then /^I should not see "([^\"]*)"$/ do |expected|
@browser.last_response.body.should_not include(expected)
end
Then /^I should see "([^\"]*)" lines$/ do |lines|
@browser.last_response.body.chomp.split($/).length.should == lines.to_i
end