summaryrefslogtreecommitdiff
path: root/spec/ruby/core/string/each_codepoint_spec.rb
blob: 4e910f44b54f5af555d7c2681da7db9b390db9f8 (plain)
1
2
3
4
5
6
7
8
9
10
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../shared/codepoints', __FILE__)
require File.expand_path('../shared/each_codepoint_without_block', __FILE__)

with_feature :encoding do
  describe "String#each_codepoint" do
    it_behaves_like(:string_codepoints, :each_codepoint)
    it_behaves_like(:string_each_codepoint_without_block, :each_codepoint)
  end
end