Skip to content
This repository has been archived by the owner on Mar 16, 2020. It is now read-only.

Commit

Permalink
Merge pull request #13 from vreuter/patch-1
Browse files Browse the repository at this point in the history
Fix links in docs to Timing demo
  • Loading branch information
nestorpersist committed Feb 14, 2018
2 parents 328d039 + faf374a commit 6aebbe6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/src/main/tut/docs/actions.md
Expand Up @@ -27,10 +27,10 @@ Simple actions do not contain other actions.
Compound actions contain other actions within themselves.

* **`label`**. Introduced a labeled block of code. See the [Example](https://github.com/47deg/LambdaTest/blob/master/src/test/scala/demo/Example.scala) demo.
* **`test`**. Defines a named test. See the [Example](https://github.com/47deg/LambdaTest/blob/master/src/test/scala/demo/.scala) demo.
* **`test`**. Defines a named test. See the [Example](https://github.com/47deg/LambdaTest/blob/master/src/test/scala/demo/Example.scala) demo.
* **`changeOptions`**. Used to change options within its body. See the [FailOnly](https://github.com/47deg/LambdaTest/blob/master/src/test/scala/coverage/FailOnly.scala) test.
* **`timer`**. Reports the execution time of its body. See the [Timing](https://github.com/47deg/LambdaTest/blob/master/src/test/scala/demo/Timing.scala) demo.
* **`assertTiming`**. Reports the execution time of its body. Fails if a max time is exceeded. See the [Timing](https://github.com/47deg/LambdaTest/blob/master/src/test/scala/demo/Timing.scala) demo.
* **`timer`**. Reports the execution time of its body. See the [Timing](https://github.com/47deg/LambdaTestTiming/blob/master/src/test/scala/demo/Timing.scala) demo.
* **`assertTiming`**. Reports the execution time of its body. Fails if a max time is exceeded. See the [Timing](https://github.com/47deg/LambdaTestTiming/blob/master/src/test/scala/demo/Timing.scala) demo.
* **`nest`**. Used to nest declarations in immutable tests. See the [Immutable](https://github.com/47deg/LambdaTest/blob/master/src/test/scala/demo/Immutable.scala) demo.

### Assertion Nesting Rule
Expand Down
6 changes: 3 additions & 3 deletions docs/src/main/tut/docs/quick.md
Expand Up @@ -11,9 +11,9 @@ Include LambdaTest jar

"com.fortysevendeg" % "lambda-test_2.11" % "1.1.2" % "test"

Each test file should
Each test file should include

include com.fortyseven.lambdatest._
import com.fortyseven.lambdatest._

Each test file class should extend the `LambdaTest` trait.

Expand All @@ -25,4 +25,4 @@ If you want to run tests via SBT then the `build.sbt` file should specify
testFrameworks += new TestFramework("com.fortysevendeg.lambdatest.sbtinterface.LambdaFramework")

To see a simple example look at the [Example](https://github.com/47deg/LambdaTest/blob/master/src/test/scala/demo/Example.scala) demo.


0 comments on commit 6aebbe6

Please sign in to comment.