aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/Rakefile
diff options
context:
space:
mode:
authorErik Ostrom <erik@echographia.com>2009-09-28 13:31:30 -0500
committerJoshua Peek <josh@joshpeek.com>2009-09-28 13:31:30 -0500
commit8ffc2e3b8de38c485fa24820208b40920dad7ae3 (patch)
tree2eb4160ef48ce6898e0b43f3ab5ed47be4b7dcdd /actionpack/Rakefile
parent1696039f29103a6b6bf1e7c274928b302c8c9f31 (diff)
downloadrails-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/Rakefile')
-rw-r--r--actionpack/Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/Rakefile b/actionpack/Rakefile
index 97ffd27347..af39175047 100644
--- a/actionpack/Rakefile
+++ b/actionpack/Rakefile
@@ -34,7 +34,7 @@ end
desc "Run all unit tests"
task :test => [:test_action_pack, :test_active_record_integration]
-TESTS_GLOB = "test/{abstract,controller,dispatch,new_base,template,html-scanner}/**/*_test.rb"
+TESTS_GLOB = "test/{abstract,controller,dispatch,new_base,template,html-scanner,view}/**/*_test.rb"
Rake::TestTask.new(:test_action_pack) do |t|
t.libs << 'test'