class SSHake::Mock::UnsupportedCommandError
Public Class Methods
new(command)
click to toggle source
# File lib/sshake/mock/unsupported_command_error.rb, line 9 def initialize(command) @command = command end
Public Instance Methods
to_s()
click to toggle source
# File lib/sshake/mock/unsupported_command_error.rb, line 13 def to_s "Executed command is not support by the mock session (`#{@command}`)" end