summaryrefslogtreecommitdiff
path: root/spec/ruby/shared/file/chardev.rb
blob: 8a7a89fd05f58b9dae60fdd15768335a30f4d8eb (plain)
1
2
3
4
5
6
7
8
9
describe :file_chardev, shared: true do
  it "returns true/false depending if the named file is a char 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