Sha256: 8cc0523a143cd68f06924bcf17562d7bf1d2cd28a74d273ab115e65428a3e9e1

Contents?: true

Size: 821 Bytes

Versions: 5

Compression:

Stored size: 821 Bytes

Contents

# encoding: utf-8

require 'spec_helper'
require 'github_api/core_ext/hash'

describe Github::ParameterFilter, '#filter!' do
  let(:hash) {  { :a => { :b => { :c => 1 } } }  }

  let(:klass) {
    Class.new do
      include Github::ParameterFilter
    end
  }

  subject(:instance) { klass.new }

  it 'removes unwanted keys from hash' do
    instance.filter!([:a], hash)
    expect(hash.deep_key?(:a)).to be_true
    expect(hash.deep_key?(:b)).to be_false
    expect(hash.deep_key?(:c)).to be_false
  end

  it 'recursively filters inputs tree' do
    instance.filter!([:a, :b], hash)
    expect(hash.deep_key?(:c)).to be_false
  end

  it 'filters inputs tree only on top level' do
    instance.filter!([:a, :b], hash, :recursive => false)
    expect(hash.deep_key?(:c)).to be_true
  end

end # Github::ParameterFilter

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
github_api-0.12.3 spec/github/parameter_filter_spec.rb
github_api-0.12.2 spec/github/parameter_filter_spec.rb
github_api-0.12.1 spec/github/parameter_filter_spec.rb
github_api-0.12.0 spec/github/parameter_filter_spec.rb
github_api-0.11.3 spec/github/parameter_filter_spec.rb