Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / validate_re_spec.rb
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 (file)
index 2d2291c..0000000
+++ /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