This commit is contained in:
Thomas Levine 2012-10-11 00:21:43 -04:00
parent 878f29cecb
commit 662a6efb2f
4 changed files with 13 additions and 0 deletions

3
tests/setup_teardown/setup Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
echo setup has run >> .log

4
tests/setup_teardown/setup_dir Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
echo > .log
echo setup_dir has run >> .log

3
tests/setup_teardown/teardown Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
echo teardown has run >> .log

View File

@ -0,0 +1,3 @@
#!/bin/sh
rm .log