--- a/.hgignore Wed Sep 19 22:45:11 2012 -0400
+++ b/.hgignore Wed Sep 19 22:54:37 2012 -0400
@@ -7,3 +7,4 @@
*.un~
.ropeproject
tags
+*.t.err
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/run-tests.sh Wed Sep 19 22:54:37 2012 -0400
@@ -0,0 +1,4 @@
+#!/usr/bin/env bash
+
+cd tests
+cram *.t | pygmentize -l diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/basic.t Wed Sep 19 22:54:37 2012 -0400
@@ -0,0 +1,11 @@
+ $ $TESTDIR/setup.sh
+
+Make sure cram works:
+
+ $ echo foo
+ foo
+
+And the setup too:
+
+ $ cat cats
+ meow
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/setup.sh Wed Sep 19 22:54:37 2012 -0400
@@ -0,0 +1,3 @@
+#!/usr/bin/env bash
+
+echo meow >> cats