From 9ad8afd3cd4f120949cab392898722ea8f7418b0 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 12 Mar 2013 13:13:05 -0500 Subject: README --- README | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 README diff --git a/README b/README new file mode 100644 index 0000000..275ac18 --- /dev/null +++ b/README @@ -0,0 +1,22 @@ +This library implements some of the more useful parts of the Test:: and TAP:: +namespaces from Perl. Currently, we have: + +- a class for writing tests (TestMore, similar to Test::More) +- a TAP generator (tap.TestBuilder, similar to Test::Builder) +- a TAP parser (tap.Parser, similar to TAP::Parser) +- a standalone test harness (harness.TestHarness, similar to Test::Harness) +- a harness which integrates into sbt + +More features to come as requested! + +This library is on the Maven Central Repository, as the artifact +com.iinteractive#scala-test-more_2.10;0.01 + +To use this library with your project, just add these two lines to your +build.sbt: + + libraryDependencies += "com.iinteractive" % "scala-test-more_2.10" % "0.01" % "test" + + testFrameworks += new TestFramework("com.iinteractive.test.sbt.Framework") + +Further documentation can be found at http://doy.github.com/scala-test-more/. -- cgit v1.2.3