aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-03-12 13:13:05 -0500
committerJesse Luehrs <doy@tozt.net>2013-03-12 13:13:05 -0500
commit9ad8afd3cd4f120949cab392898722ea8f7418b0 (patch)
treed06a40ad767a56779521c607813e9574f272126a
parent12fe2b7175e4c3ce17f8c664e4f01f1eefa573f0 (diff)
downloadscala-test-more-9ad8afd3cd4f120949cab392898722ea8f7418b0.tar.gz
scala-test-more-9ad8afd3cd4f120949cab392898722ea8f7418b0.zip
README
-rw-r--r--README22
1 files changed, 22 insertions, 0 deletions
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/.