mirror of
https://github.com/inspec/inspec
synced 2025-01-09 19:59:10 +00:00
db8e6e7415
Signed-off-by: Ryan Davis <zenspider@chef.io>
13 lines
289 B
Ruby
13 lines
289 B
Ruby
require "inspec-test-ui/version"
|
|
|
|
module InspecPlugins
|
|
module TestUI
|
|
class Plugin < ::Inspec.plugin(2)
|
|
plugin_name :'inspec-test-ui'
|
|
cli_command :testui do
|
|
require "inspec-test-ui/cli_command"
|
|
InspecPlugins::TestUI::CliCommand
|
|
end
|
|
end
|
|
end
|
|
end
|