aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/core/hash/each_pair_spec.rb
blob: 285ca01b26ffc8e3308b2b3028736ec0e99c97d1 (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