Get user_test.rb working

Signed-off-by: Ryan Davis <zenspider@chef.io>
This commit is contained in:
Ryan Davis 2019-05-24 16:20:54 -07:00
parent 69f2927983
commit 761f48e63c
4 changed files with 9 additions and 1 deletions

View file

@ -4,6 +4,9 @@
require 'pp'
require 'stringio'
require 'forwardable'
require 'thor'
require 'base64'
require 'inspec/base_cli'
module Inspec
class Config

View file

@ -1,4 +1,5 @@
# copyright: 2015, Vulcano Security GmbH
require 'inspec/resources/command'
module Inspec::Resources
class Powershell < Cmd

View file

@ -1,7 +1,8 @@
require 'inspec/utils/parser'
require 'inspec/utils/convert'
require 'inspec/utils/filter'
require 'inspec/utils/simpleconfig'
require 'inspec/resources/powershell'
module Inspec::Resources
# This file contains two resources, the `user` and `users` resource.

View file

@ -1,5 +1,8 @@
require 'helper'
require 'inspec/resource'
require 'inspec/resources/users'
require 'inspec/resources/command'
describe 'Inspec::Resources::User' do