2016-02-26 18:38:24 +01:00
|
|
|
/*
|
2019-01-02 18:55:26 +08:00
|
|
|
* Copyright (C) 2009-2019 Lightbend Inc. <https://www.lightbend.com>
|
2016-02-26 18:38:24 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
package docs
|
|
|
|
|
|
|
|
|
|
trait CompileOnlySpec {
|
2019-03-11 10:38:24 +01:00
|
|
|
|
2016-02-26 18:38:24 +01:00
|
|
|
/**
|
|
|
|
|
* Given a block of code... does NOT execute it.
|
|
|
|
|
* Useful when writing code samples in tests, which should only be compiled.
|
|
|
|
|
*/
|
2019-02-09 15:25:39 +01:00
|
|
|
def compileOnlySpec(body: => Unit) = ()
|
2016-02-26 18:38:24 +01:00
|
|
|
}
|