X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/3d9c577508cc7d813473e5daa9f236cdd4a676fb..5fbc96e38dd8dfcb3eb1ed0a5f4319ccaf244d6d:/test/integration/vectortile/inspec/tilekiln_spec.rb?ds=inline diff --git a/test/integration/vectortile/inspec/tilekiln_spec.rb b/test/integration/vectortile/inspec/tilekiln_spec.rb index 2887571db..d44562d4c 100644 --- a/test/integration/vectortile/inspec/tilekiln_spec.rb +++ b/test/integration/vectortile/inspec/tilekiln_spec.rb @@ -21,6 +21,10 @@ describe http("https://localhost/shortbread_v1/tilejson.json", :ssl_verify => fa its("status") { should cmp 200 } end +describe json(:content => http("https://localhost/shortbread_v1/tilejson.json", :ssl_verify => false)) do + its(["tiles"]) { should eq(["https://vector.openstreetmap.org/shortbread_v1/{z}/{x}/{y}.mvt"]) } +end + # There are no tiles so everything should return a 404 describe http("https://localhost/shortbread_v1/0/0/0.mvt", :ssl_verify => false) do its("status") { should cmp 404 }