invidious/lib/kemal/spec/route_spec.cr
Leon Klingele 40fb17791e
shard: track dependencies
Commit the whole ./lib/ folder which stores the Crystal dependencies.
This has a few benefits:

- Allows to build the project without a connection to the Internet
  to retrieve dependencies.
- Makes the project resistant against dependency re-tags which might
  include malicious code.
2019-08-15 01:51:27 +02:00

26 lines
668 B
Crystal

require "./spec_helper"
describe "Route" do
describe "match?" do
it "matches the correct route" do
get "/route1" do
"Route 1"
end
get "/route2" do
"Route 2"
end
request = HTTP::Request.new("GET", "/route2")
client_response = call_request_on_app(request)
client_response.body.should eq("Route 2")
end
it "doesn't allow a route declaration start without /" do
expect_raises Kemal::Exceptions::InvalidPathStartException, "Route declaration get \"route\" needs to start with '/', should be get \"/route\"" do
get "route" do
"Route 1"
end
end
end
end
end