https://github.com/PressForward/pressforward
Raw File
Tip revision: 4b07d43e72a035ec596da102dfce51d3d90721c3 authored by Aram Zucker-Scharff on 30 August 2013, 20:29:22 UTC
Merging in fixes, improvements from 2.1.x
Tip revision: 4b07d43
bootstrap.php
<?php

require_once getenv( 'WP_TESTS_DIR' ) . '/includes/functions.php';

function _manually_load_plugin() {
	require __DIR__ . '/../pressforward.php';
	require __DIR__ . '/includes/install.php';
}
tests_add_filter( 'muplugins_loaded', '_manually_load_plugin' );

require getenv( 'WP_TESTS_DIR' ) . '/includes/bootstrap.php';
require __DIR__ . '/includes/testcase.php';
require __DIR__ . '/includes/factory.php';


back to top