module Matt::Support::Participant
Attributes
configuration[RW]
name[RW]
Public Instance Methods
class_name()
click to toggle source
# File lib/matt/support/participant.rb, line 13 def class_name self.class.name.gsub /#<Class(.*?)>::/, "" end
fail!(message)
click to toggle source
# File lib/matt/support/participant.rb, line 9 def fail!(message) raise UnexpectedError, message end
to_s()
click to toggle source
# File lib/matt/support/participant.rb, line 17 def to_s "#{class_name}(#{self.name})" end