| 1 |
<?php |
| 2 |
|
| 3 |
$_tests_dir = '/tmp/wordpress/tests/phpunit'; |
| 4 |
|
| 5 |
require_once $_tests_dir . '/includes/functions.php'; |
| 6 |
|
| 7 |
function _manually_load_plugin() { |
| 8 |
require dirname( __FILE__ ) . '/../edit_flow.php'; |
| 9 |
} |
| 10 |
tests_add_filter( 'muplugins_loaded', '_manually_load_plugin' ); |
| 11 |
|
| 12 |
require $_tests_dir . '/includes/bootstrap.php'; |
| 13 |
|
| 14 |
require dirname( __FILE__ ) . '/testcase-edit-flow-ajax.php'; |
| 15 |
|