Sha256: 97f9757b6d2afd11721395cdc8e53560a1064d8c3a411a86844ab0fc124a7943
Contents?: true
Size: 402 Bytes
Versions: 52
Compression:
Stored size: 402 Bytes
Contents
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
Version data entries
52 entries across 52 versions & 2 rubygems