#-- # Copyright (c) 2006 Mathew Abonyi Toth # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the # "Software"), to deal in the Software without restriction, including # without limitation the rights to use, copy, modify, merge, publish, # distribute, sublicense, and/or sell copies of the Software, and to # permit persons to whom the Software is furnished to do so, subject to # the following conditions: # # The above copyright notice and this permission notice shall be # included in all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #++ require 'test/unit' require 'test/unit/testcase' require 'active_support' require 'active_record/fixtures' require 'active_test/filter' require 'active_test/base' require 'active_test/subject' require 'active_test/subject/controller' require 'active_test/subject/model' #require 'active_test/subject/helper' #require 'active_test/subject/view' #require 'active_test/subject/stress' #require 'active_test/subject/integration' # assertions require 'active_test/asserts/difference' require 'active_test/asserts/assigns' require 'active_test/asserts/validations' ActiveTest::Subject.class_eval do include ActiveTest::Asserts::Difference # include ActiveTest::Suites # include ActiveTest::Fixtures # include ActiveTest::Benchmark # include ActiveTest::Reflection # include ActiveTest::Specifications end ActiveTest::Controller.class_eval do include ActiveTest::Asserts::Assigns include ActiveTest::Asserts::Validations end ActiveTest::Model.class_eval do include ActiveTest::Asserts::Validations end