just require things once

This commit is contained in:
Aaron Patterson 2011-12-21 15:03:43 -07:00
parent d4a4fcbc93
commit 401b266f5f
1 changed files with 2 additions and 4 deletions

View File

@ -1,4 +1,5 @@
require "isolation/abstract_unit" require "isolation/abstract_unit"
require 'rack/test'
class ::MyMailInterceptor class ::MyMailInterceptor
def self.delivering_email(email); email; end def self.delivering_email(email); email; end
@ -15,6 +16,7 @@ class ::MyOtherMailObserver < ::MyMailObserver; end
module ApplicationTests module ApplicationTests
class ConfigurationTest < Test::Unit::TestCase class ConfigurationTest < Test::Unit::TestCase
include ActiveSupport::Testing::Isolation include ActiveSupport::Testing::Isolation
include Rack::Test::Methods
def new_app def new_app
File.expand_path("#{app_path}/../new_app") File.expand_path("#{app_path}/../new_app")
@ -181,8 +183,6 @@ module ApplicationTests
assert !$prepared assert !$prepared
require "#{app_path}/config/environment" require "#{app_path}/config/environment"
require 'rack/test'
extend Rack::Test::Methods
get "/" get "/"
assert $prepared assert $prepared
@ -485,8 +485,6 @@ module ApplicationTests
RUBY RUBY
require "#{app_path}/config/environment" require "#{app_path}/config/environment"
require "rack/test"
extend Rack::Test::Methods
post "/posts.json", '{ "title": "foo", "name": "bar" }', "CONTENT_TYPE" => "application/json" post "/posts.json", '{ "title": "foo", "name": "bar" }', "CONTENT_TYPE" => "application/json"
assert_equal '{"title"=>"foo"}', last_response.body assert_equal '{"title"=>"foo"}', last_response.body