mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
10 lines
304 B
Ruby
10 lines
304 B
Ruby
|
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
|