Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / validate_array_spec.rb
diff --git a/3rdparty/modules/stdlib/spec/acceptance/validate_array_spec.rb b/3rdparty/modules/stdlib/spec/acceptance/validate_array_spec.rb
deleted file mode 100644 (file)
index 87016c2..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-require 'spec_helper_acceptance'
-
-describe 'validate_array function' do
-  describe 'success' do
-    pp1 = <<-DOC
-      $one = ['a', 'b']
-      validate_array($one)
-    DOC
-    it 'validates a single argument' do
-      apply_manifest(pp1, :catch_failures => true)
-    end
-
-    pp2 = <<-DOC
-      $one = ['a', 'b']
-      $two = [['c'], 'd']
-      validate_array($one,$two)
-    DOC
-    it 'validates an multiple arguments' do
-      apply_manifest(pp2, :catch_failures => true)
-    end
-    [
-      %{validate_array({'a' => 'hash' })},
-      %{validate_array('string')},
-      %{validate_array(false)},
-      %{validate_array(undef)},
-    ].each do |pp|
-      it "rejects #{pp.inspect}" do
-        expect(apply_manifest(pp, :expect_failures => true).stderr).to match(%r{is not an Array\.  It looks to be a})
-      end
-    end
-  end
-  describe 'failure' do
-    it 'handles improper number of arguments'
-  end
-end