Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / type_spec.rb
diff --git a/3rdparty/modules/stdlib/spec/acceptance/type_spec.rb b/3rdparty/modules/stdlib/spec/acceptance/type_spec.rb
deleted file mode 100644 (file)
index 7b6e1fb..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-require 'spec_helper_acceptance'
-
-describe 'type function' do
-  describe 'success' do
-    pp1 = <<-DOC
-      $a = ["the","public","art","galleries"]
-      # Anagram: Large picture halls, I bet
-      $o = type($a)
-      notice(inline_template('type is <%= @o.to_s %>'))
-    DOC
-    it 'types arrays' do
-      apply_manifest(pp1, :catch_failures => true) do |r|
-        expect(r.stdout).to match(%r{type is Tuple\[String.*, String.*, String.*, String.*\]})
-      end
-    end
-
-    pp2 = <<-DOC
-      $a = "blowzy night-frumps vex'd jack q"
-      $o = type($a)
-      notice(inline_template('type is <%= @o.to_s %>'))
-    DOC
-    it 'types strings' do
-      apply_manifest(pp2, :catch_failures => true) do |r|
-        expect(r.stdout).to match(%r{type is String})
-      end
-    end
-    it 'types hashes'
-    it 'types integers'
-    it 'types floats'
-    it 'types booleans'
-  end
-  describe 'failure' do
-    it 'handles no arguments'
-  end
-end