Commit f634b6b9 by Taylor Otwell

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

parent bc2e54b1
<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>
\ No newline at end of file
<?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'));
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment