aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/new_base/test_helper.rb
Commit message (Collapse)AuthorAgeFilesLines
* Replace the class level Rack::Test DSL with the regular integration tests DSLPratik Naik2009-05-201-43/+12
|
* Replace ad hoc Rack::Test with ActionController::IntegrationTestPratik Naik2009-05-201-9/+7
|
* Cleaning up more render testsYehuda Katz + Carl Lerche2009-05-141-1/+1
|
* Ported over render :file tests.Yehuda Katz + Carl Lerche2009-05-131-0/+24
|
* Implement FooController.action(:name)Yehuda Katz2009-05-021-1/+1
| | | | | | * Rails actions are now Rack endpoints, and can be retrieved via FooController.action(name) and called with an env * Updated some tests that relied on the old internal #process/#call implementation
* Renamed Base2 to Base and don't require old action_controller for new BaseYehuda Katz + Carl Lerche2009-05-011-67/+3
|
* Starting to get new_base to run on old testsYehuda Katz + Carl Lerche2009-05-011-0/+2
|
* Ported over the concept of public instance methods on controller child ↵Yehuda Katz + Carl Lerche2009-05-011-5/+5
| | | | classes as callable action methods
* Move ContentType inline for now. Yehuda Katz + Carl Lerche2009-05-011-1/+0
| | | | Trying to avoid premature proliferation of modules.
* Support implicit and explicit content typesYehuda Katz + Carl Lerche2009-05-011-0/+1
|
* Support implicit render and blank renderYehuda Katz + Carl Lerche2009-05-011-0/+20
|
* Ported over render :template testsYehuda Katz + Carl Lerche2009-05-011-0/+5
|
* Renamed ActionController::AbstractBase to ActionController::HttpYehuda Katz + Carl Lerche2009-05-011-1/+1
|
* OMG, a lot of workYehuda Katz + Carl Lerche2009-05-011-1/+13
|
* Get Base2 layouts to work :)Yehuda Katz and Carl Lerche2009-04-071-0/+12
|
* Layouts work in AbstractController. Add support for the rspec runner for T::UYehuda Katz and Carl Lerche2009-04-071-18/+1
|
* Add depends_on, use, and setup to abstract up ideas about module inheritance.Yehuda Katz and Carl Lerche2009-04-071-10/+8
|
* Merge branch 'abstract_controller' of git@github.com:wycats/rails into ↵Yehuda Katz and Carl Lerche2009-04-061-3/+9
|\ | | | | | | abstract_controller
| * In the middle of some refactoring... some fails due to changes in ↵Yehuda Katz and Carl Lerche2009-03-231-3/+9
| | | | | | | | AbstractController not yet reflected in ActionController tests
* | Changes necessary to run the T::U tests with the rspec runnerYehuda Katz and Carl Lerche2009-04-061-6/+15
|/
* CheckpointYehuda Katz and Carl Lerche2009-03-231-36/+2
|
* Add a bunch of tests for various render :action, layout combinationsYehuda Katz2009-03-231-1/+1
|
* Finished implementing :layout for most of the render optionsCarl Lerche2009-03-231-2/+2
|
* Finished implementing layout for render :textCarl Lerche2009-03-231-1/+1
|
* Modified the action layout tests to use the new FixtureTemplate classCarl Lerche2009-03-231-0/+36
|
* Get very basic layouts working.Yehuda Katz2009-03-191-0/+1
| | | * Required small architecture change
* Implemented basic template rendering in AC::Base2:Yehuda Katz2009-03-181-0/+133
* Created several macros for writing simpler specs * Finished making Rack::Test work right * Implemented render_to_string * Status Codes * render :text => nil