Drop roles::debian_mirror::listen_addr for mirror-accumu
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / to_yaml_spec.rb
1 require 'spec_helper'
2
3 describe 'to_yaml' do
4   it { is_expected.not_to eq(nil) }
5   it { is_expected.to run.with_params('').and_return("--- ''\n") }
6   it { is_expected.to run.with_params(true).and_return(%r{--- true\n}) }
7   it { is_expected.to run.with_params('one').and_return(%r{--- one\n}) }
8   it { is_expected.to run.with_params([]).and_return("--- []\n") }
9   it { is_expected.to run.with_params(['one']).and_return("---\n- one\n") }
10   it { is_expected.to run.with_params(['one', 'two']).and_return("---\n- one\n- two\n") }
11   it { is_expected.to run.with_params({}).and_return("--- {}\n") }
12   it { is_expected.to run.with_params('key' => 'value').and_return("---\nkey: value\n") }
13   it {
14     is_expected.to run.with_params('one' => { 'oneA' => 'A', 'oneB' => { 'oneB1' => '1', 'oneB2' => '2' } }, 'two' => ['twoA', 'twoB'])
15                       .and_return("---\none:\n  oneA: A\n  oneB:\n    oneB1: '1'\n    oneB2: '2'\ntwo:\n- twoA\n- twoB\n")
16   }
17
18   it { is_expected.to run.with_params('‰').and_return("--- \"‰\"\n") }
19   it { is_expected.to run.with_params('∇').and_return("--- \"∇\"\n") }
20 end