summaryrefslogtreecommitdiff
path: root/spec/unit/plugins/groovy_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/plugins/groovy_spec.rb')
-rw-r--r--spec/unit/plugins/groovy_spec.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/spec/unit/plugins/groovy_spec.rb b/spec/unit/plugins/groovy_spec.rb
index 5d072d16..81a1c557 100644
--- a/spec/unit/plugins/groovy_spec.rb
+++ b/spec/unit/plugins/groovy_spec.rb
@@ -18,7 +18,6 @@
require File.expand_path(File.join(File.dirname(__FILE__), '..', '..', '/spec_helper.rb'))
-require File.expand_path(File.join(File.dirname(__FILE__), '..', 'path', 'ohai_plugin_common.rb'))
describe Ohai::System, "plugin groovy" do
@@ -45,20 +44,4 @@ describe Ohai::System, "plugin groovy" do
@plugin.languages.should_not have_key(:groovy)
end
- test_plugin([ "languages", "groovy" ], [ "groovy" ]) do | p |
- p.test([ "centos-5.5", "ubuntu-12.10" ], [ "x64" ], [[]],
- { "languages" => { "groovy" => nil }})
- p.test([ "centos-6.2", "ubuntu-12.04", "ubuntu-13.04" ], [ "x86", "x64" ], [[]],
- { "languages" => { "groovy" => nil }})
- p.test([ "centos-5.5" ], [ "x64" ], [[ "java", "groovy" ]],
- { "languages" => { "groovy" => { "version" => "2.1.7" }}})
- p.test([ "centos-6.2" ], [ "x86", "x64" ], [[ "java", "groovy" ]],
- { "languages" => { "groovy" => { "version" => "2.1.7" }}})
- p.test([ "ubuntu-10.04" ], [ "x86", "x64" ], [[ "java", "groovy" ]],
- { "languages" => { "groovy" => { "version" => "1.6.4" }}})
- p.test([ "ubuntu-12.04", "ubuntu-13.04" ], [ "x86", "x64" ], [[ "java", "groovy" ]],
- { "languages" => { "groovy" => { "version" => "1.8.6" }}})
- p.test([ "ubuntu-12.10" ], [ "x64" ], [[ "java", "groovy" ]],
- { "languages" => { "groovy" => { "version" => "1.8.6" }}})
- end
end