diff options
Diffstat (limited to 'spec/ruby/library/stringio/length_spec.rb')
| -rw-r--r-- | spec/ruby/library/stringio/length_spec.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/ruby/library/stringio/length_spec.rb b/spec/ruby/library/stringio/length_spec.rb new file mode 100644 index 0000000000..a83be6256a --- /dev/null +++ b/spec/ruby/library/stringio/length_spec.rb @@ -0,0 +1,8 @@ +require_relative '../../spec_helper' +require 'stringio' + +describe "StringIO#length" do + it "returns the length of the wrapped string" do + StringIO.new("example").length.should == 7 + end +end |
