mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Replacing more string to match new paths
This commit is contained in:
parent
2a54f0923d
commit
d24aca34f1
4 changed files with 10 additions and 10 deletions
|
@ -126,7 +126,7 @@ class TemplateTaskTest extends CakeTestCase {
|
|||
public function testGenerate() {
|
||||
App::build(array(
|
||||
'Console' => array(
|
||||
LIBS . 'tests' . DS . 'test_app' . DS . 'console' . DS
|
||||
LIBS . 'Test' . DS . 'test_app' . DS . 'console' . DS
|
||||
)
|
||||
));
|
||||
$this->Task->initialize();
|
||||
|
@ -146,7 +146,7 @@ class TemplateTaskTest extends CakeTestCase {
|
|||
public function testGenerateWithTemplateFallbacks() {
|
||||
App::build(array(
|
||||
'Console' => array(
|
||||
LIBS . 'tests' . DS . 'test_app' . DS . 'console' . DS,
|
||||
LIBS . 'Test' . DS . 'test_app' . DS . 'console' . DS,
|
||||
CAKE_CORE_INCLUDE_PATH . DS . 'console' . DS
|
||||
)
|
||||
));
|
||||
|
|
|
@ -36,8 +36,8 @@ if (!class_exists('AppController', false)) {
|
|||
class CakeTestCaseTest extends CakeTestCase {
|
||||
|
||||
public static function setUpBeforeClass() {
|
||||
require_once LIBS . 'tests' . DS . 'Fixture' . DS . 'AssertTagsTestCase.php';
|
||||
require_once LIBS . 'tests' . DS . 'Fixture' . DS . 'FixturizedTestCase.php';
|
||||
require_once LIBS . 'Test' . DS . 'Fixture' . DS . 'AssertTagsTestCase.php';
|
||||
require_once LIBS . 'Test' . DS . 'Fixture' . DS . 'FixturizedTestCase.php';
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -133,7 +133,7 @@ class XmlTest extends CakeTestCase {
|
|||
$this->assertEqual($obj->firstChild->nodeName, 'tag');
|
||||
$this->assertEqual($obj->firstChild->nodeValue, 'value');
|
||||
|
||||
$xml = LIBS . 'tests' . DS . 'Fixture' . DS . 'sample.xml';
|
||||
$xml = LIBS . 'Test' . DS . 'Fixture' . DS . 'sample.xml';
|
||||
$obj = Xml::build($xml);
|
||||
$this->assertEqual($obj->getName(), 'tags');
|
||||
$this->assertEqual(count($obj), 2);
|
||||
|
@ -374,7 +374,7 @@ class XmlTest extends CakeTestCase {
|
|||
$obj = Xml::build($xml);
|
||||
$this->assertEqual(Xml::toArray($obj), array('tag' => 'name'));
|
||||
|
||||
$xml = LIBS . 'tests' . DS . 'Fixture' . DS . 'sample.xml';
|
||||
$xml = LIBS . 'Test' . DS . 'Fixture' . DS . 'sample.xml';
|
||||
$obj = Xml::build($xml);
|
||||
$expected = array(
|
||||
'tags' => array(
|
||||
|
@ -516,7 +516,7 @@ class XmlTest extends CakeTestCase {
|
|||
* @return void
|
||||
*/
|
||||
public function testRss() {
|
||||
$rss = file_get_contents(LIBS . 'tests' . DS . 'Fixture' . DS . 'rss.xml');
|
||||
$rss = file_get_contents(LIBS . 'Test' . DS . 'Fixture' . DS . 'rss.xml');
|
||||
$rssAsArray = Xml::toArray(Xml::build($rss));
|
||||
$this->assertEqual($rssAsArray['rss']['@version'], '2.0');
|
||||
$this->assertEqual(count($rssAsArray['rss']['channel']['item']), 2);
|
||||
|
@ -647,7 +647,7 @@ class XmlTest extends CakeTestCase {
|
|||
* @return void
|
||||
*/
|
||||
public function testSoap() {
|
||||
$xmlRequest = Xml::build(LIBS . 'tests' . DS . 'Fixture' . DS . 'soap_request.xml');
|
||||
$xmlRequest = Xml::build(LIBS . 'Test' . DS . 'Fixture' . DS . 'soap_request.xml');
|
||||
$expected = array(
|
||||
'Envelope' => array(
|
||||
'@soap:encodingStyle' => 'http://www.w3.org/2001/12/soap-encoding',
|
||||
|
@ -660,7 +660,7 @@ class XmlTest extends CakeTestCase {
|
|||
);
|
||||
$this->assertEqual(Xml::toArray($xmlRequest), $expected);
|
||||
|
||||
$xmlResponse = Xml::build(LIBS . 'tests' . DS . 'Fixture' . DS . 'soap_response.xml');
|
||||
$xmlResponse = Xml::build(LIBS . 'Test' . DS . 'Fixture' . DS . 'soap_response.xml');
|
||||
$expected = array(
|
||||
'Envelope' => array(
|
||||
'@soap:encodingStyle' => 'http://www.w3.org/2001/12/soap-encoding',
|
||||
|
|
|
@ -105,7 +105,7 @@ class CakeFixtureManager {
|
|||
|
||||
if (strpos($fixture, 'core.') === 0) {
|
||||
$fixture = substr($fixture, strlen('core.'));
|
||||
$fixturePaths[] = LIBS . 'tests' . DS . 'Fixture';
|
||||
$fixturePaths[] = LIBS . 'Test' . DS . 'Fixture';
|
||||
} elseif (strpos($fixture, 'app.') === 0) {
|
||||
$fixture = substr($fixture, strlen('app.'));
|
||||
$fixturePaths = array(
|
||||
|
|
Loading…
Reference in a new issue