diff options
author | Bharat Mediratta <bharat@menalto.com> | 2012-05-13 21:09:26 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2012-05-13 21:09:59 -0700 |
commit | ffbaa7bf82750814b6b31c8c83ee11ad25a41196 (patch) | |
tree | 34f4df8ac831cbf159ba07085ca5ba4fb43a251c /modules/gallery/tests | |
parent | d1390bd87db1a7e59bbd72f5991fbbc6374c98b4 (diff) |
Follow on for #1845 - handle paths with dots in them properly.
Diffstat (limited to 'modules/gallery/tests')
-rw-r--r-- | modules/gallery/tests/Legal_File_Helper_Test.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/gallery/tests/Legal_File_Helper_Test.php b/modules/gallery/tests/Legal_File_Helper_Test.php index c101de10..6f94c9cd 100644 --- a/modules/gallery/tests/Legal_File_Helper_Test.php +++ b/modules/gallery/tests/Legal_File_Helper_Test.php @@ -29,4 +29,10 @@ class Legal_File_Helper_Test extends Gallery_Unit_Test_Case { public function change_extension_with_no_extension_test() { $this->assert_equal("foo.flv", legal_file::change_extension("foo", "flv")); } + + public function change_extension_path_containing_dots_test() { + $this->assert_equal( + "/website/foo.com/VID_20120513_105421.jpg", + legal_file::change_extension("/website/foo.com/VID_20120513_105421.mp4", "jpg")); + } }
\ No newline at end of file |