X-Git-Url: https://jasonwoof.com/gitweb/?p=wfpl.git;a=blobdiff_plain;f=unit_tests.php;h=41677e4f26a19525db7e86d77edde784d19c56ec;hp=3577664ce56cc94b410cb989f5b35e2773004184;hb=fe9a487e1b5ed0700481aee4609055dc6c47505d;hpb=23dfbcc20fc6d20fb5be211e5af50cdcb8565c8e diff --git a/unit_tests.php b/unit_tests.php index 3577664..41677e4 100644 --- a/unit_tests.php +++ b/unit_tests.php @@ -18,8 +18,8 @@ # This file is for running unit tests. Either on wfpl or your own code. -require_once(__DIR__.'/'.'code/wfpl/template.php'); -require_once(__DIR__.'/'.'code/wfpl/messages.php'); +require_once(__DIR__.'/'.'template.php'); +require_once(__DIR__.'/'.'messages.php'); # call this to declare that a unit test has passed function unit_test_passed($msg) { @@ -106,11 +106,11 @@ function run_unit_tests($directory, $basenames) { } # Call this to unit test wfpl. By default it tests everything, or you can pass -# a space-separated list of the basenames of the files in code/wfpl/unit_tests/ +# a space-separated list of the basenames of the files in wfpl/unit_tests/ # that you'd like to run. function unit_test_wfpl($basenames = 'format db misc encode') { - tem_load('code/wfpl/unit_tests/template.html'); - run_unit_tests('code/wfpl/unit_tests', $basenames); + tem_load(__DIR__.'/'.'unit_tests/template.html'); + run_unit_tests(__DIR__.'/'.'unit_tests', $basenames); display_messages(); tem_output(); exit();