Crawling actual map *names*, but not yet pulling in maps

This commit is contained in:
Dan Buch
2012-03-05 09:42:09 -05:00
parent 6d9ae87557
commit 607a4158e1
6 changed files with 78 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
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