X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=3rdparty%2Fmodules%2Fstdlib%2Fspec%2Facceptance%2Fvalidate_re_spec.rb;fp=3rdparty%2Fmodules%2Fstdlib%2Fspec%2Facceptance%2Fvalidate_re_spec.rb;h=0000000000000000000000000000000000000000;hb=30caaa85aed7015ca0d77216bff175eebd917eb7;hp=2d2291ca6fc0d916ff0196f56ffea592dd5c72b4;hpb=6f656bd4265e3dab13b9af2bf96e9044322e9d8f;p=mirror%2Fdsa-puppet.git diff --git a/3rdparty/modules/stdlib/spec/acceptance/validate_re_spec.rb b/3rdparty/modules/stdlib/spec/acceptance/validate_re_spec.rb deleted file mode 100644 index 2d2291ca6..000000000 --- a/3rdparty/modules/stdlib/spec/acceptance/validate_re_spec.rb +++ /dev/null @@ -1,46 +0,0 @@ -require 'spec_helper_acceptance' - -describe 'validate_re function' do - describe 'success' do - pp1 = <<-DOC - $one = 'one' - $two = '^one$' - validate_re($one,$two) - DOC - it 'validates a string' do - apply_manifest(pp1, :catch_failures => true) - end - - pp2 = <<-DOC - $one = 'one' - $two = ['^one$', '^two'] - validate_re($one,$two) - DOC - it 'validates an array' do - apply_manifest(pp2, :catch_failures => true) - end - - pp3 = <<-DOC - $one = 'one' - $two = ['^two$', '^three'] - validate_re($one,$two) - DOC - it 'validates a failed array' do - apply_manifest(pp3, :expect_failures => true) - end - - pp4 = <<-DOC - $one = '3.4.3' - $two = '^2.7' - validate_re($one,$two,"The $puppetversion fact does not match 2.7") - DOC - it 'validates a failed array with a custom error message' do - expect(apply_manifest(pp4, :expect_failures => true).stderr).to match(%r{does not match}) - end - end - - describe 'failure' do - it 'handles improper number of arguments' - it 'handles improper argument types' - end -end