# File lib/Borges/TestCase/CallbackStoreTest.rb, line 16
  def test_action
    @store.register_action_callback do "action" end
    req = Object.new
    class << req
      def fields; ["0"]; end
    end

    assert_equal "action", @store.process_request(req),
                 "Action gets called by #process_request"
  end