2014-12-18 09:25:33 +01:00
|
|
|
/*
|
2016-02-23 12:58:39 +01:00
|
|
|
* Copyright (C) 2009-2016 Lightbend Inc. <http://www.lightbend.com>
|
2014-12-18 09:25:33 +01:00
|
|
|
*/
|
|
|
|
|
|
2015-05-11 23:05:18 +02:00
|
|
|
package docs.http.scaladsl.server
|
2014-12-18 09:25:33 +01:00
|
|
|
|
2015-04-24 18:03:07 +02:00
|
|
|
import akka.http.scaladsl.server.Directives
|
|
|
|
|
import akka.http.scaladsl.testkit.ScalatestRouteTest
|
2016-02-26 18:38:24 +01:00
|
|
|
import docs.CompileOnlySpec
|
2014-12-18 09:25:33 +01:00
|
|
|
import org.scalatest.{ Matchers, WordSpec }
|
|
|
|
|
|
2016-02-26 18:38:24 +01:00
|
|
|
abstract class RoutingSpec extends WordSpec with Matchers
|
|
|
|
|
with Directives with ScalatestRouteTest
|
|
|
|
|
with CompileOnlySpec
|