# File test/test_rep.rb, line 10
    def setup
      # value object
      @value = Object.new

      # class object
      @new_call = 0
      @new_arg1 = nil
      @new_arg2 = nil
      @new_iterator_p = nil

      # for block
      @hook_call = 0
      @hook_arg1 = nil
      @hook_arg2 = nil

      @class = Forwarder.new(self)
      class << @class
        def_delegator :__getobj__, :new
      end

      # target
      @rep = Rucy::Repository.new
    end