class Roby::Test::ExecutionExpectations::Quarantine

Public Class Methods

new(task, backtrace) click to toggle source
# File lib/roby/test/execution_expectations.rb, line 907
def initialize(task, backtrace)
    super(backtrace)
    @task = task
end

Public Instance Methods

to_s() click to toggle source
# File lib/roby/test/execution_expectations.rb, line 916
def to_s
    "#{@task} should be quarantined"
end
update_match(propagation_info) click to toggle source
# File lib/roby/test/execution_expectations.rb, line 912
def update_match(propagation_info)
    @task.quarantined?
end