A Ruby gem to get planning applications data from UK council websites.
Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- require 'spec_helper'
-
- describe UKPlanningScraper::Authority do
-
- describe '#named' do
-
- let(:scraper) { UKPlanningScraper::Authority.named(authority_name) }
-
- context 'for 4 days of Brighton and Hove' do
- let(:authority_name) { 'Brighton and Hove' }
-
- it 'returns apps' do
- apps = VCR.use_cassette("#{self.class.description}") {
- scraper.scrape({ decided_days: 4 }, { delay: 0 })
- }
- pp apps
- # expect(authority).to be_a(UKPlanningScraper::Authority)
- end
- end
-
- end
-
- end
|