diff options
Diffstat (limited to 'spec/rubyspec/shared/file/chardev.rb')
-rw-r--r-- | spec/rubyspec/shared/file/chardev.rb | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/spec/rubyspec/shared/file/chardev.rb b/spec/rubyspec/shared/file/chardev.rb deleted file mode 100644 index 8a7a89fd05..0000000000 --- a/spec/rubyspec/shared/file/chardev.rb +++ /dev/null @@ -1,9 +0,0 @@ -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 |