mirror of
https://github.com/inspec/inspec
synced 2024-12-20 10:03:28 +00:00
35 lines
1 KiB
Ruby
35 lines
1 KiB
Ruby
|
require 'minitest/autorun'
|
||
|
require 'minitest/test'
|
||
|
require_relative '../../../../lib/inspec'
|
||
|
|
||
|
module PluginV2BackCompat
|
||
|
class PluginV1TypeClassFetchers < MiniTest::Test
|
||
|
|
||
|
# Note: we can't call klass.name, because that is redefined as a setter.
|
||
|
|
||
|
# cli had a base class (which was really a registry), but no class fetcher
|
||
|
# There was no Inspec.plugin(...)
|
||
|
|
||
|
def test_get_plugin_v1_base_for_fetchers
|
||
|
klass = Inspec.fetcher(1)
|
||
|
assert_kind_of Class, klass
|
||
|
assert Inspec::Plugins.const_defined? :Fetcher
|
||
|
assert_equal Inspec::Plugins::Fetcher, klass
|
||
|
end
|
||
|
|
||
|
def test_get_plugin_v1_base_for_source_readers
|
||
|
klass = Inspec.source_reader(1)
|
||
|
assert_kind_of Class, klass
|
||
|
assert Inspec::Plugins.const_defined? :SourceReader
|
||
|
assert_equal Inspec::Plugins::SourceReader, klass
|
||
|
end
|
||
|
|
||
|
def test_get_plugin_v1_base_for_secrets
|
||
|
klass = Inspec.secrets(1)
|
||
|
assert_kind_of Class, klass
|
||
|
assert Inspec::Plugins.const_defined? :Secret
|
||
|
assert_equal Inspec::Plugins::Secret, klass
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|