Sha256: 72ee29be6dbadcc84e720e6e0923def61a0bc221ed63ed18556be95571891334

Contents?: true

Size: 374 Bytes

Versions: 1

Compression:

Stored size: 374 Bytes

Contents

Given /^wait a second$/ do
  sleep(1)
end

Given /^binding\.pry$/ do
  require "pry"
  binding.pry
end

Then /^the sitemap should not include "([^\"]*)"$/ do |path|
  expect( @server_inst.sitemap.resources.map(&:url) ).not_to include path
end

Then /^the sitemap should include "([^\"]*)"$/ do |path|
  expect( @server_inst.sitemap.resources.map(&:url) ).to include path
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
middleman-sprockets-3.5.0 features/step_definitions/server_steps.rb