X-Git-Url: https://jasonwoof.com/gitweb/?p=wfpl.git;a=blobdiff_plain;f=unit_tests.php;h=41677e4f26a19525db7e86d77edde784d19c56ec;hp=ee62e20e3e0100cd6b84722d5d202a60a4e04656;hb=15459c86d0996ab3037b1738a8be6efd378c1258;hpb=615c6667d12c7972fb08288e1ffaecea8abb16a8 diff --git a/unit_tests.php b/unit_tests.php index ee62e20..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('code/wfpl/template.php'); -require_once('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();