aboutsummaryrefslogtreecommitdiffstats
path: root/src/test
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-03-04 14:52:55 -0600
committerJesse Luehrs <doy@tozt.net>2013-03-04 14:58:38 -0600
commitd8c4195da98291557062d270ee880c940c39d493 (patch)
treed32b100d1fc39e7931aad95cea2cb8461dd7daee /src/test
parentd9960e53ab53d82bb50cbb963097ab201fbc7fe9 (diff)
downloadscala-test-more-d8c4195da98291557062d270ee880c940c39d493.tar.gz
scala-test-more-d8c4195da98291557062d270ee880c940c39d493.zip
just call this method todo
Diffstat (limited to 'src/test')
-rw-r--r--src/test/scala/org/perl8/test/tap/TestBuilderTest.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/scala/org/perl8/test/tap/TestBuilderTest.scala b/src/test/scala/org/perl8/test/tap/TestBuilderTest.scala
index 36ffb9b..eb0536a 100644
--- a/src/test/scala/org/perl8/test/tap/TestBuilderTest.scala
+++ b/src/test/scala/org/perl8/test/tap/TestBuilderTest.scala
@@ -227,8 +227,8 @@ class TestBuilderTest extends TestMore {
Console.withOut(output) {
Console.withErr(output) {
val builder = new TestBuilder
- builder.okTodo(false, "do a thing", todo = "not working yet")
- builder.okTodo(true, todo = "is it?")
+ builder.todo("not working yet", false, "do a thing")
+ builder.todo("is it?", true)
builder.doneTesting
}
}