diff options
author | Joey Hess <joey@kitenet.net> | 2010-11-02 16:49:35 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-11-02 16:49:35 -0400 |
commit | d93a37289406fbeb0cedf05f1c8009f68cdb2570 (patch) | |
tree | 91743836be32ceceaa361b5fd1640c12c480ab41 /test.hs | |
parent | c7b0f60fba9f53ed97c43f3ad9a48e7698b97760 (diff) |
add a stupid test harness
Diffstat (limited to 'test.hs')
-rw-r--r-- | test.hs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test.hs b/test.hs new file mode 100644 index 000000000..e9ea68459 --- /dev/null +++ b/test.hs @@ -0,0 +1,8 @@ +-- TODO find a test harness that is actually in Debian and use it. + +import Test.QuickCheck +import GitRepo + +main = do + putStr "prop_idempotent_deencode " + quickCheck prop_idempotent_deencode |