aboutsummaryrefslogblamecommitdiffstats
path: root/activesupport/test/core_ext/pathname_test.rb
blob: d17e8bb2550670605441b4c7fda227e1bb0bbcd3 (plain) (tree)
1
2
3
4
5
6
7
8
9
                       

                                         




                                                                                               
   
require 'abstract_unit'

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