diff options
Diffstat (limited to 'spec/rubyspec/library/stringio/sync_spec.rb')
-rw-r--r-- | spec/rubyspec/library/stringio/sync_spec.rb | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/spec/rubyspec/library/stringio/sync_spec.rb b/spec/rubyspec/library/stringio/sync_spec.rb deleted file mode 100644 index b662d7b7cc..0000000000 --- a/spec/rubyspec/library/stringio/sync_spec.rb +++ /dev/null @@ -1,19 +0,0 @@ -require File.expand_path('../../../spec_helper', __FILE__) -require File.expand_path('../fixtures/classes', __FILE__) - -describe "StringIO#sync" do - it "returns true" do - StringIO.new('').sync.should be_true - end -end - -describe "StringIO#sync=" do - before :each do - @io = StringIO.new('') - end - - it "does not change 'sync' status" do - @io.sync = false - @io.sync.should be_true - end -end |