1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/shared/file/blockdev.rb

10 lines
304 B
Ruby
Raw Normal View History

describe :file_blockdev, shared: true do
it "returns true/false depending if the named file is a block device" do
@object.send(@method, tmp("")).should == false
end
it "accepts an object that has a #to_path method" do
@object.send(@method, mock_to_path(tmp(""))).should == false
end
end