aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/pathname_test.rb
blob: 2933e2d61063745efc3d1f34cfc14851b374ff78 (plain) (blame)
1
2
3
4
5
6
7
8
9
require File.dirname(__FILE__) + '/../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