57b4f9217113

Initial skeleton.
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Wed, 19 Sep 2012 22:54:37 -0400
parents 9c2566fabbdd
children 2356bfd686af
branches/tags (none)
files .hgignore LICENSE.markdown README.markdown ffind run-tests.sh tests/basic.t tests/setup.sh

Changes

--- 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