class Roby::Test::ExecutionExpectations::Finalize

Public Class Methods

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

Public Instance Methods

to_s() click to toggle source
# File lib/roby/test/execution_expectations.rb, line 1127
def to_s
    "#{@plan_object} should be finalized"
end
update_match(propagation_info) click to toggle source
# File lib/roby/test/execution_expectations.rb, line 1123
def update_match(propagation_info)
    !@plan_object.plan
end