class Shred::Commands::Test

Public Instance Methods

all() click to toggle source
# File lib/shred/commands/test.rb, line 7
def all
  invoke(:server) if cfg('server', required: false)
  invoke(:client) if cfg('client', required: false)
end
client() click to toggle source
# File lib/shred/commands/test.rb, line 18
def client
  run_shell_command(ShellCommand.new(command_lines: cfg('client')))
end
server() click to toggle source
# File lib/shred/commands/test.rb, line 13
def server
  run_shell_command(ShellCommand.new(command_lines: cfg('server')))
end