mirror of
https://github.com/inspec/inspec
synced 2025-02-16 22:18:38 +00:00
26 lines
684 B
Ruby
26 lines
684 B
Ruby
# encoding: utf-8
|
|
# copyright: 2015, Dominik Richter
|
|
# license: All rights reserved
|
|
|
|
Encoding.default_external = Encoding::UTF_8
|
|
Encoding.default_internal = Encoding::UTF_8
|
|
|
|
libdir = File.dirname(__FILE__)
|
|
$LOAD_PATH.unshift(libdir) unless $LOAD_PATH.include?(libdir)
|
|
|
|
require 'utils/spec_helper'
|
|
|
|
require 'vulcano/version'
|
|
require 'vulcano/resource'
|
|
require 'vulcano/rule'
|
|
require 'vulcano/rspec_json_formatter'
|
|
|
|
require 'resources/resources'
|
|
require 'matchers/matchers'
|
|
|
|
# Dummy module for handling additional attributes
|
|
# which may be injected by the user. This covers data
|
|
# like passwords, usernames, or configuration flags.
|
|
def attributes what, required: false
|
|
return nil
|
|
end
|