aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/string/chars_spec.rb
blob: 75cef89be1933d4107e8c81266d80118f3ee6f03 (plain)
1
2
3
4
5
6
7
8
9
10
11
require File.expand_path('../shared/chars', __FILE__)
require File.expand_path('../shared/each_char_without_block', __FILE__)

describe "String#chars" do
  it_behaves_like(:string_chars, :chars)

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