aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/journey/routes_test.rb
Commit message (Collapse)AuthorAgeFilesLines
* Prefer assert_not over refuteRafael Mendonça França2015-05-181-1/+1
|
* ActionDispatch::Journey::Routes#empty? test casesValentine Valyaeff2015-05-191-0/+2
|
* Merge pull request #15806 from tgxworld/partition_routes_during_setupAaron Patterson2015-03-021-0/+21
|\ | | | | Partition routes during setup.
| * Partition routes during setup.Guo Xiang Tan2015-02-261-0/+21
| | | | | | | | | | | | | | Partitioning of all the routes is currently being done during the first request. Since there is no need to clear the cache for `partitioned_routes` when adding a new route. We can move the partitioning of the routes during setup time.
* | Remove unneeded comment. [ci skip]Zoltan Kiss2015-03-021-1/+0
|/
* Path::Pattern is instantiated internally, so make the contructor require a ↵Aaron Patterson2014-05-291-4/+4
| | | | strexp object
* add an alternate constructor to Strexp that takes a stringAaron Patterson2014-05-291-1/+1
|
* Use ActiveSupport::TestCase in the journey testsRafael Mendonça França2012-12-311-1/+1
|
* Alias refute methods to assert_not and perfer assert_not on testsRafael Mendonça França2012-12-311-2/+2
|
* Integrate Journey into Action DispatchAndrew White2012-12-191-0/+53
Move the Journey code underneath the ActionDispatch namespace so that we don't pollute the global namespace with names that may be used for models. Fixes rails/journey#49.