# File lib/state_machine/path.rb, line 22
    def initialize(object, machine, options = {})
      assert_valid_keys(options, :target, :guard)
      
      @object = object
      @machine = machine
      @target = options[:target]
      @guard = options[:guard]
    end