1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
########################################################################
# test_is_relative.rb
#
# Test suite for the Pathname#relative method
########################################################################
require 'test-unit'
require 'pathname2'
class TC_Pathname_IsRelative < Test::Unit::TestCase
def setup
@relative = Pathname.new("foo/bar")
@absolute = Pathname.new("C:/foo/bar")
end
test "relative? basic functionality" do
assert_respond_to(@relative, :relative?)
assert_nothing_raised{ @relative.relative? }
assert_boolean(@relative.relative?)
end
test "relative? method returns true for relative paths" do
assert_true(@relative.relative?)
end
test "relative? method returns false for non-relative paths" do
assert_false(@absolute.relative?)
assert_false(Pathname.new("//foo/bar").relative?)
end
test "relative? method returns true for empty path" do
assert_true(Pathname.new("").relative?)
end
test "relative? method is not destructive" do
str = 'C:/foo'
path = Pathname.new(str)
assert_nothing_raised{ path.relative? }
assert_equal('C:\foo', path.to_s)
assert_equal('C:/foo', str)
end
def teardown
@std_relative = nil
@unc_relative = nil
end
end
|