aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/string/lines_spec.rb
blob: 6aa47ea7285636888d0b9157fbe0d60bfef6219c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)
require File.expand_path('../shared/each_line', __FILE__)
require File.expand_path('../shared/each_line_without_block', __FILE__)

describe "String#lines" do
  it_behaves_like(:string_each_line, :lines)

  it "returns an array when no block given" do
    ary = "hello world".send(@method, ' ')
    ary.should == ["hello ", "world"]
  end
end