class Roby::Test::ExecutionExpectations::NotFinalize

Public Class Methods

new(plan_object, backtrace) click to toggle source
# File lib/roby/test/execution_expectations.rb, line 1103
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 1112
def to_s
    "#{@plan_object} should not be finalized"
end
update_match(propagation_info) click to toggle source
# File lib/roby/test/execution_expectations.rb, line 1108
def update_match(propagation_info)
    @plan_object.plan
end