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