summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests
diff options
context:
space:
mode:
authorwei <>2006-07-05 07:45:41 +0000
committerwei <>2006-07-05 07:45:41 +0000
commite7e7c7403b1ffffdf1a7a4bb9e1de752fe1c72db (patch)
tree08ef806c2e72a6d14367797c765d3fb8dfa0a1d6 /tests/FunctionalTests
parentdfa5aa5fbf11f89ce483c58016465ddc3921f082 (diff)
clean up tests
Diffstat (limited to 'tests/FunctionalTests')
-rw-r--r--tests/FunctionalTests/features.php2
-rwxr-xr-xtests/FunctionalTests/quickstart.php8
-rw-r--r--tests/FunctionalTests/tickets.php2
-rw-r--r--tests/FunctionalTests/validators.php2
4 files changed, 11 insertions, 3 deletions
diff --git a/tests/FunctionalTests/features.php b/tests/FunctionalTests/features.php
index bccb3e00..9005db14 100644
--- a/tests/FunctionalTests/features.php
+++ b/tests/FunctionalTests/features.php
@@ -1,6 +1,6 @@
<?php
-require('../../test_tools/functional_tests.php');
+require('../test_tools/functional_tests.php');
$tester=new PradoFunctionalTester(dirname(__FILE__).'/features/tests');
$tester->run(new SimpleReporter());
diff --git a/tests/FunctionalTests/quickstart.php b/tests/FunctionalTests/quickstart.php
new file mode 100755
index 00000000..3493a907
--- /dev/null
+++ b/tests/FunctionalTests/quickstart.php
@@ -0,0 +1,8 @@
+<?php
+
+require('../test_tools/functional_tests.php');
+
+$tester=new PradoFunctionalTester(dirname(__FILE__).'/quickstart');
+$tester->run(new SimpleReporter());
+
+?> \ No newline at end of file
diff --git a/tests/FunctionalTests/tickets.php b/tests/FunctionalTests/tickets.php
index 3d006039..ef8b52d6 100644
--- a/tests/FunctionalTests/tickets.php
+++ b/tests/FunctionalTests/tickets.php
@@ -1,6 +1,6 @@
<?php
-require('../../test_tools/functional_tests.php');
+require('../test_tools/functional_tests.php');
$tester=new PradoFunctionalTester(dirname(__FILE__).'/tickets/tests');
$tester->run(new SimpleReporter());
diff --git a/tests/FunctionalTests/validators.php b/tests/FunctionalTests/validators.php
index f8b0029d..521cca56 100644
--- a/tests/FunctionalTests/validators.php
+++ b/tests/FunctionalTests/validators.php
@@ -1,6 +1,6 @@
<?php
-require('../../test_tools/functional_tests.php');
+require('../test_tools/functional_tests.php');
$tester=new PradoFunctionalTester(dirname(__FILE__).'/validators/tests');
$tester->run(new SimpleReporter());