Browse Source

finished string::encoding test.

Taylor Otwell 13 years ago
parent
commit
3e8fbce099
1 changed files with 18 additions and 0 deletions
  1. 18 0
      tests/cases/laravel/str.test.php

+ 18 - 0
tests/cases/laravel/str.test.php

@@ -0,0 +1,18 @@
+<?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'));
+		Config::set('application.encoding', 'foo');
+		$this->assertEquals('foo', Config::get('application.encoding'));
+		Config::set('application.encoding', 'UTF-8');
+	}
+
+}