summaryrefslogtreecommitdiffstats
path: root/src/test/scala/basic.scala
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-02-14 11:02:44 -0600
committerJesse Luehrs <doy@tozt.net>2013-02-14 11:02:44 -0600
commitb1b55f620a72a13ffd02b6e76f92d97a1a82748c (patch)
tree749781336706ff3ed41a1b5675e91e44139b9073 /src/test/scala/basic.scala
parentd00a11fd101e0894f1279dad3c19c6dcdaf71f6b (diff)
downloadscala-path-router-b1b55f620a72a13ffd02b6e76f92d97a1a82748c.tar.gz
scala-path-router-b1b55f620a72a13ffd02b6e76f92d97a1a82748c.zip
implement optionals
Diffstat (limited to 'src/test/scala/basic.scala')
-rw-r--r--src/test/scala/basic.scala15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/test/scala/basic.scala b/src/test/scala/basic.scala
index 15280e5..070ace8 100644
--- a/src/test/scala/basic.scala
+++ b/src/test/scala/basic.scala
@@ -131,13 +131,12 @@ class Basic extends FunSuite {
)
)
- // TODO support optionals
- // testRoute(
- // router, "test/x1", Map(
- // "controller" -> "test",
- // "x" -> "x1",
- // "y" -> "y"
- // )
- // )
+ testRoute(
+ router, "test/x1", Map(
+ "controller" -> "test",
+ "x" -> "x1",
+ "y" -> "y"
+ )
+ )
}
}