Changeset 1297

Show
Ignore:
Timestamp:
01/14/08 03:49:08 (8 months ago)
Author:
has.s..@gmail.com
Message:

remove some comments

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/merb/test/helper.rb

    r1296 r1297  
    5858      # }}} 
    5959      def get(path, opts = {}, &block) 
    60         # request("GET",path_with_options(path,opts), opts &block) 
    6160        request("GET", path, opts, &block) 
    6261      end 
     
    6968      # }}} 
    7069      def post(path, opts = {}, &block) 
    71         # request("POST", path_with_options(path,opts), &block) 
    7270        request("POST",path, opts, &block) 
    7371      end 
     
    8078      # }}} 
    8179      def put(path,opts = {}, &block) 
    82         # request("PUT", path_with_options(path,opts), &block) 
    8380        request("PUT",path, opts, &block) 
    8481      end 
     
    9087      # }}} 
    9188      def delete(path, opts= {}, &block) 
    92         # request("DELETE", path_with_options(path,opts), &block) 
    9389        request("DELETE",path, opts, &block) 
    9490      end