From 8c893b79d230cc844226bdf3b1de95cd5a99ecb2 Mon Sep 17 00:00:00 2001 From: Thomas Bruederli Date: Thu, 30 Jan 2014 09:12:57 +0100 Subject: Branching off for release 1.0 --- tests/bootstrap.php | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 tests/bootstrap.php (limited to 'tests/bootstrap.php') diff --git a/tests/bootstrap.php b/tests/bootstrap.php deleted file mode 100644 index 192997d0d..000000000 --- a/tests/bootstrap.php +++ /dev/null @@ -1,41 +0,0 @@ - | - | Author: Aleksander Machniak | - +-----------------------------------------------------------------------+ -*/ - -if (php_sapi_name() != 'cli') - die("Not in shell mode (php-cli)"); - -if (!defined('INSTALL_PATH')) define('INSTALL_PATH', realpath(dirname(__FILE__) . '/..') . '/' ); - -define('TESTS_DIR', dirname(__FILE__) . '/'); - -if (@is_dir(TESTS_DIR . 'config')) { - define('RCUBE_CONFIG_DIR', TESTS_DIR . 'config'); -} - -require_once(INSTALL_PATH . 'program/include/iniset.php'); - -rcmail::get_instance('test')->config->set('devel_mode', false); - -// Extend include path so some plugin test won't fail -$include_path = ini_get('include_path') . PATH_SEPARATOR . TESTS_DIR . '..'; -if (set_include_path($include_path) === false) { - die("Fatal error: ini_set/set_include_path does not work."); -} -- cgit v1.2.3