diff options
Diffstat (limited to 'chef-utils/spec/spec_helper.rb')
-rw-r--r-- | chef-utils/spec/spec_helper.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chef-utils/spec/spec_helper.rb b/chef-utils/spec/spec_helper.rb index 20d49fd766..98dce52440 100644 --- a/chef-utils/spec/spec_helper.rb +++ b/chef-utils/spec/spec_helper.rb @@ -10,6 +10,7 @@ HELPER_MODULES = [ ChefUtils::DSL::PlatformFamily, ChefUtils::DSL::Service, ChefUtils::DSL::Which, + ChefUtils::DSL::Windows, ].freeze ARCH_HELPERS = (ChefUtils::DSL::Architecture.methods - Module.methods).freeze @@ -17,6 +18,7 @@ OS_HELPERS = (ChefUtils::DSL::OS.methods - Module.methods).freeze PLATFORM_HELPERS = (ChefUtils::DSL::Platform.methods - Module.methods).freeze PLATFORM_FAMILY_HELPERS = (ChefUtils::DSL::PlatformFamily.methods - Module.methods).freeze INTROSPECTION_HELPERS = (ChefUtils::DSL::Introspection.methods - Module.methods).freeze +WINDOWS_HELPERS = (ChefUtils::DSL::Windows.methods - Module.methods).freeze # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration RSpec.configure do |config| |