X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=3rdparty%2Fmodules%2Fstdlib%2Fspec%2Facceptance%2Fchop_spec.rb;fp=3rdparty%2Fmodules%2Fstdlib%2Fspec%2Facceptance%2Fchop_spec.rb;h=0000000000000000000000000000000000000000;hb=30caaa85aed7015ca0d77216bff175eebd917eb7;hp=4def10bae9fb489881382b328a87423452097baf;hpb=6f656bd4265e3dab13b9af2bf96e9044322e9d8f;p=mirror%2Fdsa-puppet.git diff --git a/3rdparty/modules/stdlib/spec/acceptance/chop_spec.rb b/3rdparty/modules/stdlib/spec/acceptance/chop_spec.rb deleted file mode 100644 index 4def10bae..000000000 --- a/3rdparty/modules/stdlib/spec/acceptance/chop_spec.rb +++ /dev/null @@ -1,41 +0,0 @@ -require 'spec_helper_acceptance' - -describe 'chop function', :if => Puppet::Util::Package.versioncmp(return_puppet_version, '6.0.0') < 0 do - describe 'success' do - pp1 = <<-DOC - $input = "test" - if size($input) != 4 { - fail("Size of ${input} is not 4.") - } - $output = chop($input) - if size($output) != 3 { - fail("Size of ${input} is not 3.") - } - DOC - it 'eats the last character' do - apply_manifest(pp1, :catch_failures => true) - end - - pp2 = <<-'DOC' - $input = "test\r\n" - if size($input) != 6 { - fail("Size of ${input} is not 6.") - } - $output = chop($input) - if size($output) != 4 { - fail("Size of ${input} is not 4.") - } - DOC - it 'eats the last two characters of \r\n' do - apply_manifest(pp2, :catch_failures => true) - end - - pp3 = <<-DOC - $input = "" - $output = chop($input) - DOC - it 'does not fail on empty strings' do - apply_manifest(pp3, :catch_failures => true) - end - end -end