summaryrefslogtreecommitdiff
path: root/spec/ruby/core/hash/each_pair_spec.rb
blob: 3fa07c8b671385076877970e802efeef6d4fe7f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)
require File.expand_path('../shared/iteration', __FILE__)
require File.expand_path('../shared/each', __FILE__)
require File.expand_path('../../enumerable/shared/enumeratorized', __FILE__)

describe "Hash#each_pair" do
  it_behaves_like :hash_each, :each_pair
  it_behaves_like :hash_iteration_no_block, :each_pair
  it_behaves_like :enumeratorized_with_origin_size, :each_pair, { 1 => 2, 3 => 4, 5 => 6 }
end