summaryrefslogtreecommitdiff
path: root/example/scalatags/app/test/src/ExampleTests.scala
diff options
context:
space:
mode:
Diffstat (limited to 'example/scalatags/app/test/src/ExampleTests.scala')
-rw-r--r--example/scalatags/app/test/src/ExampleTests.scala29
1 files changed, 29 insertions, 0 deletions
diff --git a/example/scalatags/app/test/src/ExampleTests.scala b/example/scalatags/app/test/src/ExampleTests.scala
new file mode 100644
index 0000000..8eccecf
--- /dev/null
+++ b/example/scalatags/app/test/src/ExampleTests.scala
@@ -0,0 +1,29 @@
+package app
+import io.undertow.Undertow
+
+import utest._
+
+object ExampleTests extends TestSuite{
+ def test[T](example: cask.main.BaseMain)(f: String => T): T = {
+ val server = Undertow.builder
+ .addHttpListener(8080, "localhost")
+ .setHandler(example.defaultHandler)
+ .build
+ server.start()
+ val res =
+ try f("http://localhost:8080")
+ finally server.stop()
+ res
+ }
+
+ val tests = Tests {
+ 'Scalatags - test(Scalatags) { host =>
+ val body = requests.get(host).text()
+
+ assert(
+ body.contains("<h1>Hello World</h1>"),
+ body.contains("<p>I am cow</p>"),
+ )
+ }
+ }
+}