Created
September 23, 2015 09:39
-
-
Save nomasprime/e8605dc5efb985fe22b7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module AdminBounds | |
describe Osmosis do | |
context 'when pbf file does not exist' do | |
subject(:osmosis) { Osmosis.new('no.osm.pbf') } | |
before { osmosis.import_administrative_boundaries } | |
it { is_expected.to raise_error(RuntimeError) } | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment