From 4e853a9d5b9563dbe1909757bf4be4d8e7d2b36a Mon Sep 17 00:00:00 2001 From: Li Haoyi Date: Sat, 14 Sep 2019 16:45:39 +0800 Subject: . --- example/todoApi/app/test/src/ExampleTests.scala | 4 ++-- example/todoApi/build.sc | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'example/todoApi') diff --git a/example/todoApi/app/test/src/ExampleTests.scala b/example/todoApi/app/test/src/ExampleTests.scala index 5e9e11a..4e85a8e 100644 --- a/example/todoApi/app/test/src/ExampleTests.scala +++ b/example/todoApi/app/test/src/ExampleTests.scala @@ -4,7 +4,7 @@ import io.undertow.Undertow import utest._ object ExampleTests extends TestSuite{ - def test[T](example: cask.main.BaseMain)(f: String => T): T = { + def withServer[T](example: cask.main.BaseMain)(f: String => T): T = { val server = Undertow.builder .addHttpListener(8080, "localhost") .setHandler(example.defaultHandler) @@ -17,7 +17,7 @@ object ExampleTests extends TestSuite{ } val tests = Tests{ - 'TodoMvcApi - test(TodoMvcApi){ host => + test("TodoMvcApi") - withServer(TodoMvcApi){ host => requests.get(s"$host/list/all").text() ==> """[{"checked":true,"text":"Get started with Cask"},{"checked":false,"text":"Profit!"}]""" requests.get(s"$host/list/active").text() ==> diff --git a/example/todoApi/build.sc b/example/todoApi/build.sc index c0e75a7..e4c2108 100644 --- a/example/todoApi/build.sc +++ b/example/todoApi/build.sc @@ -9,7 +9,7 @@ trait AppModule extends ScalaModule{ def testFrameworks = Seq("utest.runner.Framework") def ivyDeps = Agg( - ivy"com.lihaoyi::utest::0.6.9", + ivy"com.lihaoyi::utest::0.7.1", ivy"com.lihaoyi::requests::0.2.0", ) } -- cgit v1.2.3