summaryrefslogtreecommitdiff
path: root/spec/ruby/shared/file/blockdev.rb
blob: b0b3ea040a346dfb36b7687209f68cb0e63fc3df (plain)
1
2
3
4
5
6
7
8
9
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