aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/library/stringio/shared/length.rb
blob: 60a4eb1bdd3b7ad9f840e761b57db960d19b5bef (plain)
1
2
3
4
5
describe :stringio_length, shared: true do
  it "returns the length of the wrapped string" do
    StringIO.new("example").send(@method).should == 7
  end
end