Module: Beaker::CommandFactory

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#assertionsObject

Why do we need this accessor? github.com/seattlerb/minitest/blob/master/lib/minitest/assertions.rb#L8-L12 Protocol: Nearly everything here boils up to assert, which expects to be able to increment an instance accessor named assertions. This is not provided by Assertions and must be provided by the thing including Assertions. See Minitest::Runnable for an example.



13
14
15
# File 'lib/beaker/command_factory.rb', line 13

def assertions
  @assertions
end

Instance Method Details

#execute(command, options = {}, &block) ⇒ Object



18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/beaker/command_factory.rb', line 18

def execute(command, options={}, &block)
  cmd_create_options = {}
  exec_opts = options.dup
  cmd_create_options[:prepend_cmds] = exec_opts.delete(:prepend_cmds) || nil
  cmd_create_options[:cmdexe] = exec_opts.delete(:cmdexe) || false
  result = self.exec(Command.new(command, [], cmd_create_options), exec_opts)

  if block_given?
    yield result
  else
    result.stdout.chomp
  end
end

#fail_test(msg) ⇒ Object



32
33
34
# File 'lib/beaker/command_factory.rb', line 32

def fail_test(msg)
  assert(false, msg)
end