A Ruby gem to get planning applications data from UK council websites.
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.
 
 
 

17 lines
382 B

  1. require 'simplecov'
  2. SimpleCov.start
  3. require 'uk_planning_scraper'
  4. RSpec.configure do |config|
  5. config.expect_with :rspec do |expectations|
  6. expectations.include_chain_clauses_in_custom_matcher_descriptions = true
  7. end
  8. config.mock_with :rspec do |mocks|
  9. mocks.verify_partial_doubles = true
  10. end
  11. config.shared_context_metadata_behavior = :apply_to_host_groups
  12. end