added foundation of testing setup.

This commit is contained in:
Taylor Otwell
2012-01-17 16:04:28 -06:00
parent db24d77e1e
commit 6f2e83f284
26 changed files with 1440 additions and 0 deletions

0
tests/cases/application/.gitignore vendored Normal file
View File

0
tests/cases/bundles/.gitignore vendored Normal file
View File

View File

@@ -0,0 +1,15 @@
<?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'));
}
}