spec/framework_spec/app/spec/shared/file/chardev.rb in rhodes-3.1.1 vs spec/framework_spec/app/spec/shared/file/chardev.rb in rhodes-3.2.0.beta.1

- old
+ new

@@ -1,5 +1,11 @@ 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 + @object.send(@method, tmp("")).should == false + end + + ruby_version_is "1.9" do + it "accepts an object that has a #to_path method" do + @object.send(@method, mock_to_path(tmp(""))).should == false + end end end