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_to_a.rb
#
# Test suite for the Pathname2#to_a method.
########################################################################
require 'test-unit'
require 'pathname2'
class TC_Pathname2_ToA < Test::Unit::TestCase
def setup
@path = Pathname2.new('C:/Program Files/foo')
end
test "to_a basic functionality" do
assert_respond_to(@path, :to_a)
assert_nothing_raised{ @path.to_a }
assert_kind_of(Array, @path.to_a)
end
test "to_a returns the expected results for standard paths" do
assert_equal(['C:'], Pathname2.new('C:/').to_a)
assert_equal(['C:', 'Program Files'], Pathname2.new('C:/Program Files').to_a)
assert_equal(['C:', 'Program Files', 'Stuff'], Pathname2.new('C:/Program Files/Stuff').to_a)
assert_equal(['C:', 'Users'], Pathname2.new("C:\\Users").to_a)
end
test "to_a returns the expected results for unc paths" do
assert_equal(['foo', 'bar', 'baz'], Pathname2.new('//foo/bar/baz').to_a)
assert_equal(['foo', 'bar'], Pathname2.new('//foo/bar').to_a)
assert_equal(['foo'], Pathname2.new('//foo').to_a)
end
test "to_a returns the expected results for empty strings and empty unc paths" do
assert_equal([], Pathname2.new('').to_a)
assert_equal([], Pathname2.new('//').to_a)
end
test "to_a does not modify receiver" do
@path.to_a
assert_equal('C:\Program Files\foo', @path)
end
def teardown
@path = nil
end
end
|