Sha256: 36c6e840f4fc384613c93536dc957abc9baf2fdddf631f40996ef3fdd2910e57

Contents?: true

Size: 1004 Bytes

Versions: 8

Compression:

Stored size: 1004 Bytes

Contents

When /^I send an "([^\"]*)" header of "([^\"]*)"$/ do |key, value|
  @request_headers ||= {}
  @request_headers[key] = value
  set_headers
end

When /^I view a page$/ do
  visit "/admin/pages/#{pages(:home).id}"
end

When /^I view a layout$/ do
  visit "/admin/layouts/#{layouts(:main).id}"
end

When /^I view a user$/ do
  visit "/admin/users/#{users(:admin).id}"
end

When /^I request the children of page "([^\"]*)"$/ do |page|
  parent_page = pages(page.intern)
  set_headers
  visit "/admin/pages/#{parent_page.id}/children", :get, {"level" => "0"}
end

Then /^(?:|I )should see "<{0,1}([^>"]*)>{0,1}" tags in the page source$/ do |text|
  response.body.should have_tag(text)
end

Then /^(?:|I )should see an xml document$/ do
  webrat.adapter.xml_content_type?.should be_true
end

Then /^(?:|I )should not see an xml document$/ do
  webrat.adapter.xml_content_type?.should_not be_true
end

def set_headers
  @request_headers.each do |k,v|
    header(k, v)
  end unless @request_headers.blank?
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
radiant-1.1.4 features/step_definitions/admin/content_negotiation_steps.rb
radiant-1.1.3 features/step_definitions/admin/content_negotiation_steps.rb
radiant-1.1.2 features/step_definitions/admin/content_negotiation_steps.rb
radiant-1.1.1 features/step_definitions/admin/content_negotiation_steps.rb
radiant-1.1.0 features/step_definitions/admin/content_negotiation_steps.rb
radiant-1.1.0.rc1 features/step_definitions/admin/content_negotiation_steps.rb
radiant-1.1.0.beta features/step_definitions/admin/content_negotiation_steps.rb
radiant-1.1.0.alpha features/step_definitions/admin/content_negotiation_steps.rb