Skip to content
Snippets Groups Projects
Commit 7ba4269c authored by Thomas Müller's avatar Thomas Müller
Browse files

<<<EOL seems not to use proper end of lines on windows

parent f2639d62
Branches
No related tags found
No related merge requests found
......@@ -43,26 +43,15 @@ class Test_Config extends PHPUnit_Framework_TestCase {
$this->config->setValue('foo', 'moo');
$this->assertAttributeEquals(array('foo' => 'moo'), 'cache', $this->config);
$content = file_get_contents(self::CONFIG_FILE);
$this->assertEquals(<<<EOL
<?php
\$CONFIG = array (
'foo' => 'moo',
);
EOL
, $content);
$expected = "<?php\n\$CONFIG = array (\n 'foo' => 'moo',\n);\n";
$this->assertEquals($expected, $content);
$this->config->setValue('bar', 'red');
$this->assertAttributeEquals(array('foo' => 'moo', 'bar' => 'red'), 'cache', $this->config);
$content = file_get_contents(self::CONFIG_FILE);
$this->assertEquals(<<<EOL
<?php
\$CONFIG = array (
'foo' => 'moo',
'bar' => 'red',
);
EOL
, $content);
$expected = "<?php\n\$CONFIG = array (\n 'foo' => 'moo',\n 'bar' => 'red',\n);\n";
$this->assertEquals($expected, $content);
}
public function testDeleteKey() {
......@@ -70,13 +59,9 @@ EOL
$this->config->deleteKey('foo');
$this->assertAttributeEquals(array(), 'cache', $this->config);
$content = file_get_contents(self::CONFIG_FILE);
$this->assertEquals(<<<EOL
<?php
\$CONFIG = array (
);
EOL
, $content);
$expected = "<?php\n\$CONFIG = array (\n);\n";
$this->assertEquals($expected, $content);
}
public function testSavingDebugMode() {
......@@ -85,14 +70,9 @@ EOL
$this->assertAttributeEquals(array(), 'cache', $this->config);
$this->assertAttributeEquals(true, 'debugMode', $this->config);
$content = file_get_contents(self::CONFIG_FILE);
$this->assertEquals(<<<EOL
<?php
define('DEBUG',true);
\$CONFIG = array (
);
EOL
, $content);
$expected = "<?php\ndefine('DEBUG',true);\n\$CONFIG = array (\n);\n";
$this->assertEquals($expected, $content);
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment