diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-06-09 21:24:46 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-06-09 21:24:46 +0200 |
commit | 99b782d8a3d92c4703a059cbd62e2f1e6fea689c (patch) | |
tree | 622bd77c72eb812e37d4b3816b93528679d71425 /tests/codeigniter/helpers/string_helper_test.php | |
parent | 1b60fda70ff1e1801c133575c530ef0a5a450029 (diff) |
Cleanup and optimize helper tests for speed
Diffstat (limited to 'tests/codeigniter/helpers/string_helper_test.php')
-rw-r--r-- | tests/codeigniter/helpers/string_helper_test.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/codeigniter/helpers/string_helper_test.php b/tests/codeigniter/helpers/string_helper_test.php index 29c3d6594..75701ec13 100644 --- a/tests/codeigniter/helpers/string_helper_test.php +++ b/tests/codeigniter/helpers/string_helper_test.php @@ -10,18 +10,18 @@ class String_helper_test extends CI_TestCase { public function test_strip_slashes() { $expected = array( - "Is your name O'reilly?", + "Is your name O'reilly?", "No, my name is O'connor." ); - + $str = array( "Is your name O\'reilly?", "No, my name is O\'connor." ); - + $this->assertEquals($expected, strip_slashes($str)); } - + public function test_trim_slashes() { $strs = array( @@ -144,4 +144,5 @@ class String_helper_test extends CI_TestCase { $this->assertEquals('file-1', increment_string('file', '-', '1')); $this->assertEquals(124, increment_string('123', '')); } + }
\ No newline at end of file |