aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/template_assertions.rb
Commit message (Collapse)AuthorAgeFilesLines
* Remove compatibility module from docs [ci skip]Alan Wu2019-05-221-1/+1
| | | | | This module exists to warn old users. I think we should remove it from the docs so we don't advertise it.
* Use frozen string literal in actionpack/Kir Shatrov2017-07-291-0/+2
|
* Revert "Merge pull request #29540 from kirs/rubocop-frozen-string"Matthew Draper2017-07-021-1/+0
| | | | | This reverts commit 3420a14590c0e6915d8b6c242887f74adb4120f9, reversing changes made to afb66a5a598ce4ac74ad84b125a5abf046dcf5aa.
* Enforce frozen string in RubocopKir Shatrov2017-07-011-0/+1
|
* Remove `assigns` and `assert_template`.Guo Xiang Tan2015-05-301-182/+3
|
* Move `TemplateAssertions` to their own fileeileencodes2015-05-091-0/+188
This moves `TemplateAssertions` out of the `test_case.rb` file and into it's own `template_assertions` file. It still inherits from `ActionController`.` This is in preparation for combining the code for Integration tests and Controller tests. This will need to be it's own file to be added to the `requires` for Integration tests. This does not currently change ANY behavior, just moving it for access later on.