summaryrefslogtreecommitdiffstats
path: root/spec/integration/network/server/mongrel.rb
Commit message (Collapse)AuthorAgeFilesLines
* [#3994-part 2] rename integration tests to *_spec.rbMarkus Roberts2010-06-281-66/+0
| | | | | | | | | Some spec files like active_record.rb had names that would confuse the load path and get loaded instead of the intended implentation when the spec was run from the same directory as the file. Author: Matt Robinson <matt@puppetlabs.com> Date: Fri Jun 11 15:29:33 2010 -0700
* Removed extra whitespace from end of linesIan Taylor2009-06-061-9/+9
|
* Fixing #2234 - fixing all of the tests broken by my bindaddress fixLuke Kanies2009-05-151-1/+19
| | | | Signed-off-by: Luke Kanies <luke@madstop.com>
* Replacing all two-space indents with four-spaceLuke Kanies2008-06-131-36/+36
|
* Adding ruby interpreter lines to the tests missing them.Luke Kanies2008-06-131-1/+3
|
* Adding execute bits to every test currently missing them.Luke Kanies2008-06-131-0/+0
|
* ensure that we only run the mongrel specs when mongrel is available as a featureRick Bradley2008-04-111-0/+2
|
* Much larger commit than I would like to land at once. This is all ↵Rick Bradley2008-04-111-0/+44
REST-related code. Two specs are failing related to how Mongrel is initialized for REST; will fix those shortly. REST indirector now supports find, with deserialization. Network code in indirector now. Will still need to un-hardwire address/port for outbound connections. Will still need to urlencode path parameters. Code for search, destroy, update is coming, should be similar to find. Reworked how the Handler module is used. Needed to be included, rather than inherited. Needed to sidestep initializers for actual web servers (webrick, mongrel), needed to be possible to have handler-including class be used as a class (aka servlet) instead of as an instance. Webrick handler registration is now abstracted to "above" the servlet. Provided a #model method to use instead of @model in handler module. This allows neutering during testing. Brought class_for_protocol up into http/webrick class as a (tested) class method. Integration tests for rest indirection. Split server integration tests into mongrel and webrick tests. Got Node/REST working properly wrt the crazy-ass autoloader thing. We're now actually passing traffic w/ webrick, fwiw.