diff options
author | Thiago Pradi <thiago.pradi@gmail.com> | 2015-03-14 16:17:42 -0300 |
---|---|---|
committer | Thiago Pradi <thiago.pradi@gmail.com> | 2015-03-14 16:17:42 -0300 |
commit | c9cab9c74c57e4a41793e0b12192fa32e370ff42 (patch) | |
tree | 9aeac019c677ffeffa95ef19140310b0135d50a2 /actionview/test | |
parent | e30a7e035ef3019f3513ac768f12da763291993b (diff) | |
download | rails-c9cab9c74c57e4a41793e0b12192fa32e370ff42.tar.gz rails-c9cab9c74c57e4a41793e0b12192fa32e370ff42.tar.bz2 rails-c9cab9c74c57e4a41793e0b12192fa32e370ff42.zip |
Cleaning unused methods from abstract_unit
Diffstat (limited to 'actionview/test')
-rw-r--r-- | actionview/test/abstract_unit.rb | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/actionview/test/abstract_unit.rb b/actionview/test/abstract_unit.rb index 3eded74f1b..4635c645d0 100644 --- a/actionview/test/abstract_unit.rb +++ b/actionview/test/abstract_unit.rb @@ -49,20 +49,6 @@ I18n.backend.store_translations 'pt-BR', {} ORIGINAL_LOCALES = I18n.available_locales.map(&:to_s).sort FIXTURE_LOAD_PATH = File.join(File.dirname(__FILE__), 'fixtures') -FIXTURES = Pathname.new(FIXTURE_LOAD_PATH) - -module RackTestUtils - def body_to_string(body) - if body.respond_to?(:each) - str = "" - body.each {|s| str << s } - str - else - body - end - end - extend self -end module RenderERBUtils def view @@ -225,49 +211,6 @@ class ActionDispatch::IntegrationTest < ActiveSupport::TestCase end end -# Temporary base class -class Rack::TestCase < ActionDispatch::IntegrationTest - def self.testing(klass = nil) - if klass - @testing = "/#{klass.name.underscore}".sub!(/_controller$/, '') - else - @testing - end - end - - def get(thing, *args) - if thing.is_a?(Symbol) - super("#{self.class.testing}/#{thing}", *args) - else - super - end - end - - def assert_body(body) - assert_equal body, Array(response.body).join - end - - def assert_status(code) - assert_equal code, response.status - end - - def assert_response(body, status = 200, headers = {}) - assert_body body - assert_status status - headers.each do |header, value| - assert_header header, value - end - end - - def assert_content_type(type) - assert_equal type, response.headers["Content-Type"] - end - - def assert_header(name, value) - assert_equal value, response.headers[name] - end -end - ActionView::RoutingUrlFor.include(ActionDispatch::Routing::UrlFor) module ActionController |