You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
box-o-sand/rails/map-mash/spec/lib/map_crawler_spec.rb

17 lines
371 B

require 'spec_helper'
describe MapCrawler do
let(:subject) { MapCrawler.new(Setting.map(:base_url)) }
describe 'when crawling for actual maps', :integration => true do
before(:each) do
Map.destroy_all
end
it 'should create Map entries for each map found' do
expect { subject.crawl }.to change{ Map.count }.by_at_least(1)
end
end
end