summaryrefslogtreecommitdiff
path: root/spec/mixlib/shellout/helper_spec.rb
blob: 977568a268540576545684b9f41b44fd2733147d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
require "spec_helper"
require "mixlib/shellout/helper"
require "logger"

describe Mixlib::ShellOut::Helper do
  class TestClass
    include Mixlib::ShellOut::Helper

    # this is a hash-like object
    def __config
      {}
    end

    # this is a train transport connection or nil
    def __transport_connection
      nil
    end

    # this is a logger-like object
    def __log
      Logger.new(IO::NULL)
    end
  end

  let(:test_class) { TestClass.new }

  it "works to run a trivial ruby command" do
    expect(test_class.shell_out("ruby -e 'exit 0'")).to be_kind_of(Mixlib::ShellOut)
  end
end