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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
# frozen_string_literal: true
require 'spec_helper'
describe 'extlib::echo' do
describe 'signature validation' do
it 'exists' do
is_expected.not_to be_nil
end
it 'requires at least one argument' do
is_expected.to run.with_params.and_raise_error(ArgumentError)
end
end
context 'should output a correct debug string for' do
it 'a string' do
allow(scope).to receive(:debug).with '(String) "test"'
is_expected.to run.with_params('test')
end
it 'a string with a comment' do
allow(scope).to receive(:debug).with 'My String (String) "test"'
is_expected.to run.with_params('test', 'My String')
end
it 'and array' do
allow(scope).to receive(:debug).with 'My Array (Array) ["1", "2", "3"]'
is_expected.to run.with_params(%w[1 2 3], 'My Array')
end
it 'a hash' do
allow(scope).to receive(:debug).with 'My Hash (Hash) {"a"=>"1"}'
is_expected.to run.with_params({ 'a' => '1' }, 'My Hash')
end
it 'a boolean value' do
allow(scope).to receive(:debug).with 'My Boolean (FalseClass) false'
is_expected.to run.with_params(false, 'My Boolean')
end
it 'an undefind value' do
allow(scope).to receive(:debug).with 'Undefined Value (NilClass) nil'
is_expected.to run.with_params(nil, 'Undefined Value')
end
end
end
|