rename str.php to str.test.php... change suffix in phpunit.xml

This commit is contained in:
Taylor Otwell 2012-01-17 16:11:06 -06:00
parent bc2e54b1ac
commit f634b6b97b
2 changed files with 1 additions and 16 deletions

View File

@ -1,7 +1,7 @@
<phpunit colors="false" bootstrap="phpunit.php">
<testsuites>
<testsuite name="Test Suite">
<directory suffix=".php">tests/cases</directory>
<directory suffix=".test.php">tests/cases</directory>
</testsuite>
</testsuites>
</phpunit>

View File

@ -1,15 +0,0 @@
<?php
class StrTest extends PHPUnit_Framework_TestCase {
/**
* Test the Str::encoding method.
*
* @group laravel
*/
public function testEncodingShouldReturnApplicationEncoding()
{
$this->assertEquals('UTF-8', Config::get('application.encoding'));
}
}