mirror of
https://gitea.invidious.io/iv-org/shard-kemal.git
synced 2024-08-15 00:53:36 +00:00
Initial commit
This commit is contained in:
commit
2eaf44195e
9 changed files with 115 additions and 0 deletions
16
spec/route_spec.cr
Normal file
16
spec/route_spec.cr
Normal file
|
@ -0,0 +1,16 @@
|
|||
require "spec_helper"
|
||||
|
||||
describe "Route" do
|
||||
describe "match" do
|
||||
it "doesn't match" do
|
||||
route = Route.new("/foo/bar", nil)
|
||||
route.match(nil, "/foo/baz".split("/")).should be_nil
|
||||
end
|
||||
|
||||
it "matches" do
|
||||
route = Route.new("/foo/:one/path/:two", nil)
|
||||
request = route.match(nil, "/foo/uno/path/dos".split("/"))
|
||||
request.not_nil!.params.should eq({"one" => "uno", "two" => "dos"})
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue