diff options
author | Erik Ostrom <erik@echographia.com> | 2009-09-28 13:31:30 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2009-09-28 13:31:30 -0500 |
commit | 8ffc2e3b8de38c485fa24820208b40920dad7ae3 (patch) | |
tree | 2eb4160ef48ce6898e0b43f3ab5ed47be4b7dcdd /actionpack/test/fixtures | |
parent | 1696039f29103a6b6bf1e7c274928b302c8c9f31 (diff) | |
download | rails-8ffc2e3b8de38c485fa24820208b40920dad7ae3.tar.gz rails-8ffc2e3b8de38c485fa24820208b40920dad7ae3.tar.bz2 rails-8ffc2e3b8de38c485fa24820208b40920dad7ae3.zip |
Ported the new ActionView::TestCase from 2-3-stable to master [#3260
state:resolved]
The test case now mimicks the template environment more closely, so it's
possible to use render, load helper dependencies.
This also fixes assert_select, and similar assertions. Because view tests
and helpers generally don't render full templates assert_select looks
first in rendered and then in output_buffer to find the rendered output.
Additional `master'-only changes: Made the Action Pack Rakefile run the
ActionView::TestCase tests, and made ActionView::Rendering#_render_text
always return a string.
Signed-off-by: Joshua Peek <josh@joshpeek.com>
Diffstat (limited to 'actionpack/test/fixtures')
-rw-r--r-- | actionpack/test/fixtures/test/_from_helper.erb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/test/fixtures/test/_from_helper.erb b/actionpack/test/fixtures/test/_from_helper.erb new file mode 100644 index 0000000000..16de7c0f8a --- /dev/null +++ b/actionpack/test/fixtures/test/_from_helper.erb @@ -0,0 +1 @@ +<%= render_from_helper %>
\ No newline at end of file |