mirror of
https://github.com/inspec/inspec
synced 2024-11-27 15:10:44 +00:00
12 lines
402 B
Ruby
12 lines
402 B
Ruby
# encoding: utf-8
|
|
|
|
module Inspec
|
|
autoload :Attribute, 'inspec/objects/attribute'
|
|
autoload :Control, 'inspec/objects/control'
|
|
autoload :EachLoop, 'inspec/objects/each_loop'
|
|
autoload :List, 'inspec/objects/list'
|
|
autoload :OrTest, 'inspec/objects/or_test'
|
|
autoload :RubyHelper, 'inspec/objects/ruby_helper'
|
|
autoload :Test, 'inspec/objects/test'
|
|
autoload :Value, 'inspec/objects/value'
|
|
end
|