File: /home/f/r/e/frenchy/www/french-american.org/current/vendor/timber/timber/tests/bootstrap.php
<?php
$_tests_dir = getenv( 'WP_TESTS_DIR' );
if ( ! $_tests_dir ) {
$_tests_dir = rtrim( getenv( 'TMPDIR' ), '/' ) . '/wordpress-tests-lib';
}
require_once $_tests_dir . '/includes/functions.php';
function _manually_load_plugin() {
global $timber;
require dirname( __FILE__ ) . '/../vendor/autoload.php';
$timber = new \Timber\Timber();
require dirname( __FILE__ ) . '/../wp-content/plugins/advanced-custom-fields/acf.php';
require dirname( __FILE__ ) . '/../wp-content/plugins/co-authors-plus/co-authors-plus.php';
}
tests_add_filter( 'muplugins_loaded', '_manually_load_plugin' );
require $_tests_dir . '/includes/bootstrap.php';
require_once __DIR__.'/Timber_UnitTestCase.php';
require_once __DIR__.'/TimberImage_UnitTestCase.php';
error_log('Use http://build.starter-theme.dev/ for testing with UI');
if ( !function_exists('is_post_type_viewable') ) {
function is_post_type_viewable( $post_type_object ) {
return $post_type_object->publicly_queryable || ( $post_type_object->_builtin && $post_type_object->public );
}
}
// Make sure translations are installed.
Timber_UnitTestCase::install_translation( 'de_DE' );