From b7fdcb06c4292cd66cad91b48f243a79cdd64b7c Mon Sep 17 00:00:00 2001 From: Michal Sitko Date: Thu, 9 Jun 2016 16:02:27 +0200 Subject: [PATCH] +doc add depenedency note to docs #20732 (#20761) --- akka-docs/rst/java/http/routing-dsl/testkit.rst | 2 +- akka-docs/rst/scala/http/routing-dsl/testkit.rst | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/akka-docs/rst/java/http/routing-dsl/testkit.rst b/akka-docs/rst/java/http/routing-dsl/testkit.rst index 4eddb2a2f8..ad1bac69cf 100644 --- a/akka-docs/rst/java/http/routing-dsl/testkit.rst +++ b/akka-docs/rst/java/http/routing-dsl/testkit.rst @@ -9,7 +9,7 @@ response properties in a compact way. To use the testkit you need to take these steps: -* add a dependency to the ``akka-http-testkit-experimental`` module +* add a dependency to the ``akka-http-testkit`` module * derive the test class from ``JUnitRouteTest`` * wrap the route under test with ``RouteTest.testRoute`` to create a ``TestRoute`` * run requests against the route using ``TestRoute.run(request)`` which will return diff --git a/akka-docs/rst/scala/http/routing-dsl/testkit.rst b/akka-docs/rst/scala/http/routing-dsl/testkit.rst index af52e695d1..35b90a1f80 100644 --- a/akka-docs/rst/scala/http/routing-dsl/testkit.rst +++ b/akka-docs/rst/scala/http/routing-dsl/testkit.rst @@ -4,6 +4,9 @@ Route TestKit One of Akka HTTP's design goals is good testability of the created services. For services built with the Routing DSL Akka HTTP provides a dedicated testkit that makes efficient testing of route logic easy and convenient. This "route test DSL" is made available with the *akka-http-testkit* module. +To use it include the following dependency:: + + "com.typesafe.akka" %% "akka-http-testkit" % "@version@" Usage