mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
better docs on testing
This commit is contained in:
parent
d7e9f3002a
commit
28b12858d6
1 changed files with 14 additions and 0 deletions
14
README.rdoc
14
README.rdoc
|
@ -345,6 +345,20 @@ When using send_file or static files you may have mime types Sinatra doesn't und
|
|||
|
||||
= Testing
|
||||
|
||||
=== Methods
|
||||
|
||||
get_it path, params
|
||||
get_it path, params.merge(:env => { 'HTTP_HOST' => 'www.sinatrarb.com' }) or
|
||||
get_it path, params.merge(:env => { :host => 'www.sinatrarb.com' })
|
||||
|
||||
RESTful:
|
||||
|
||||
post_it '/foo', '<myxml></myxml>', 'HTTP_ACCEPT' => 'application/xml'
|
||||
|
||||
also works with:
|
||||
|
||||
get_it, post_it, put_it, delete_it, head_it
|
||||
|
||||
=== Test/Unit
|
||||
|
||||
require 'my_sinatra_app'
|
||||
|
|
Loading…
Add table
Reference in a new issue