summaryrefslogtreecommitdiff
path: root/lib/pathname.rb
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-05-24 11:56:50 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-05-24 11:56:50 +0000
commitadc10cab5181133a9f54f1b273fd3449b1dc2709 (patch)
tree65a98343e73eedf799f5d70781bbbfcd1e50fc22 /lib/pathname.rb
parent21e891efe1b19a61d907379f47beaafda4377ee3 (diff)
test Kernel.open accepts pathname object.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6398 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/pathname.rb')
-rw-r--r--lib/pathname.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/pathname.rb b/lib/pathname.rb
index 889bbf0fc1..ac420a5cae 100644
--- a/lib/pathname.rb
+++ b/lib/pathname.rb
@@ -1170,5 +1170,20 @@ if $0 == __FILE__
assert_not_same(str, obj.to_s)
assert_not_same(obj.to_s, obj.to_s)
end
+
+ def test_kernel_open
+ count = 0
+ stat1 = File.stat(__FILE__)
+ result = Kernel.open(Pathname.new(__FILE__)) {|f|
+ stat2 = f.stat
+ assert_equal(stat1.dev, stat2.dev)
+ assert_equal(stat1.ino, stat2.ino)
+ assert_equal(stat1.size, stat2.size)
+ count += 1
+ 2
+ }
+ assert_equal(1, count)
+ assert_equal(2, result)
+ end
end
end