aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/test/core_ext')
-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