mirror of
https://github.com/inspec/inspec
synced 2024-12-19 09:33:20 +00:00
476c6878b3
+ Turn off verbosity in Rakefile by default. Use `rake V=1` to turn back on. + MiniTest -> Minitest everywhere. + MiniTest::Unit::TestCase -> Minitest::Test everywhere. + Updated minitest doco urls to official and up-to-date site. + Normalize requires. Only needs "minitest/autorun" and "minitest/pride". Signed-off-by: Ryan Davis <zenspider@chef.io>
44 lines
1.3 KiB
Ruby
44 lines
1.3 KiB
Ruby
# Tests for the *DSL plugin types
|
|
|
|
require 'minitest/autorun'
|
|
require 'byebug'
|
|
|
|
require_relative '../../../../lib/inspec/plugin/v2'
|
|
|
|
module DslUnitTests
|
|
|
|
[
|
|
:outer_profile_dsl,
|
|
:control_dsl,
|
|
:describe_dsl,
|
|
:test_dsl,
|
|
:resource_dsl,
|
|
].each do |plugin_type_under_test|
|
|
|
|
Class.new(Minitest::Test) do
|
|
# Assign name to anonymous class, so test output is meaningful
|
|
Object.const_set(plugin_type_under_test.to_s.upcase + '_UnitTests', self)
|
|
|
|
# One day I will understand Ruby scoping and closures.
|
|
# Until then, re-expose this as class variable.
|
|
@@plugin_type = plugin_type_under_test
|
|
|
|
def test_calling_Inspec_dot_plugin_with_plugin_type_returns_the_base_class
|
|
klass = Inspec.plugin(2, @@plugin_type)
|
|
assert_kind_of Class, klass
|
|
assert_equal 'Inspec::Plugin::V2::PluginType::Dsl', klass.name
|
|
end
|
|
|
|
def test_plugin_type_base_classes_can_be_accessed_by_name
|
|
klass = Inspec::Plugin::V2::PluginBase.base_class_for_type(@@plugin_type)
|
|
assert_kind_of Class, klass
|
|
assert_equal 'Inspec::Plugin::V2::PluginType::Dsl', klass.name
|
|
end
|
|
|
|
def test_plugin_type_registers_an_activation_dsl_method
|
|
klass = Inspec::Plugin::V2::PluginBase
|
|
assert_respond_to klass, @@plugin_type, "Activation method for #{@@plugin_type}"
|
|
end
|
|
end
|
|
end
|
|
end
|