Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / is_a_spec.rb
diff --git a/3rdparty/modules/stdlib/spec/acceptance/is_a_spec.rb b/3rdparty/modules/stdlib/spec/acceptance/is_a_spec.rb
deleted file mode 100644 (file)
index 449e3e7..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-require 'spec_helper_acceptance'
-
-if return_puppet_version =~ %r{^4}
-  describe 'is_a function' do
-    pp1 = <<-DOC
-      if 'hello world'.is_a(String) {
-        notify { 'output correct': }
-      }
-    DOC
-    it 'matches a string' do
-      apply_manifest(pp1, :catch_failures => true) do |r|
-        expect(r.stdout).to match(%r{Notice: output correct})
-      end
-    end
-
-    pp2 = <<-DOC
-      if 5.is_a(String) {
-        notify { 'output wrong': }
-      }
-    DOC
-    it 'does not match a integer as string' do
-      apply_manifest(pp2, :catch_failures => true) do |r|
-        expect(r.stdout).not_to match(%r{Notice: output wrong})
-      end
-    end
-  end
-end