1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
# frozen_string_literal: true
require 'spec_helper'
describe 'extlib::dump_params' do
it 'exists' do
is_expected.not_to be_nil
end
it 'requires an argument' do
is_expected.to run.and_return({})
end
describe 'mock resource' do
before do
allow(scope).to receive(:resource).and_return(foo: 'foo', bar: 'bar')
end
it 'convert symbols to strings' do
is_expected.to run.and_return('foo' => 'foo', 'bar' => 'bar')
end
it 'filter bar' do
is_expected.to run.with_params(['bar']).and_return('foo' => 'foo')
end
it 'filter foo' do
is_expected.to run.with_params(['foo']).and_return('bar' => 'bar')
end
end
end
|