aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/pathname_test.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-04-17 21:49:57 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-04-17 21:49:57 -0700
commitbd84b820188daed991756531071137dc7e0876a0 (patch)
tree6bac8cec645f8940e792f2e83e2ba916d51234da /activesupport/test/core_ext/pathname_test.rb
parent727e9dc18a7059f024b922b65951198ff0184fdd (diff)
downloadrails-bd84b820188daed991756531071137dc7e0876a0.tar.gz
rails-bd84b820188daed991756531071137dc7e0876a0.tar.bz2
rails-bd84b820188daed991756531071137dc7e0876a0.zip
Eliminate Pathname extensions
Diffstat (limited to 'activesupport/test/core_ext/pathname_test.rb')
-rw-r--r--activesupport/test/core_ext/pathname_test.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/activesupport/test/core_ext/pathname_test.rb b/activesupport/test/core_ext/pathname_test.rb
deleted file mode 100644
index 01de67251b..0000000000
--- a/activesupport/test/core_ext/pathname_test.rb
+++ /dev/null
@@ -1,10 +0,0 @@
-require 'abstract_unit'
-require 'active_support/core_ext/pathname'
-
-class TestPathname < Test::Unit::TestCase
- def test_clean_within
- assert_equal "Hi", Pathname.clean_within("Hi")
- assert_equal "Hi", Pathname.clean_within("Hi/a/b/../..")
- assert_equal "Hello\nWorld", Pathname.clean_within("Hello/a/b/../..\na/b/../../World/c/..")
- end
-end