mirror of
https://github.com/retailcrm/prestashop-module.git
synced 2025-03-02 19:33:14 +03:00
19 lines
687 B
PHP
19 lines
687 B
PHP
<?php
|
|
|
|
if (file_exists(__DIR__ . '/../../PrestaShop/tests-legacy')) {
|
|
require_once __DIR__ . '/../../PrestaShop/tests-legacy/bootstrap.php';
|
|
} else {
|
|
require_once __DIR__ . '/../../PrestaShop/tests/bootstrap.php';
|
|
}
|
|
|
|
require_once __DIR__ . '/../../PrestaShop/config/config.inc.php';
|
|
require_once __DIR__ . '/../../PrestaShop/config/defines_uri.inc.php';
|
|
require_once __DIR__ . '/../retailcrm/bootstrap.php';
|
|
require_once __DIR__ . '/../retailcrm/retailcrm.php';
|
|
require_once __DIR__ . '/../../PrestaShop/init.php';
|
|
require_once __DIR__ . '/helpers/RetailcrmTestCase.php';
|
|
require_once __DIR__ . '/helpers/RetailcrmTestHelper.php';
|
|
|
|
$module = new RetailCRM();
|
|
$module->install();
|