aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/string/chars_spec.rb
blob: 54876f9f9d52b666b4e43c2aac4f748ebddcd2f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
require_relative 'shared/chars'
require_relative 'shared/each_char_without_block'

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