aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2012-01-05 12:44:05 -0200
committerSantiago Pastorino <santiago@wyeworks.com>2012-01-05 12:44:05 -0200
commit44951c8d44bebbb94f7a19b043b3eddcbd8b4657 (patch)
treefe7577304e08ef115b41f8abf4450cea9d2cd18c /activerecord/test
parentf306f9a1702a8799c78620ec954cc7c2e943c93b (diff)
downloadrails-44951c8d44bebbb94f7a19b043b3eddcbd8b4657.tar.gz
rails-44951c8d44bebbb94f7a19b043b3eddcbd8b4657.tar.bz2
rails-44951c8d44bebbb94f7a19b043b3eddcbd8b4657.zip
Revert "active record base class test case should not be public"
People use this! This reverts commit 071c8bf62ac7ffdb587268a6789fd825d0dae2a6.
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/active_record/test_case.rb61
1 files changed, 0 insertions, 61 deletions
diff --git a/activerecord/test/active_record/test_case.rb b/activerecord/test/active_record/test_case.rb
deleted file mode 100644
index 64ecef2077..0000000000
--- a/activerecord/test/active_record/test_case.rb
+++ /dev/null
@@ -1,61 +0,0 @@
-module ActiveRecord
- # = Active Record Test Case
- #
- # Defines some test assertions to test against SQL queries.
- class TestCase < ActiveSupport::TestCase #:nodoc:
- setup :cleanup_identity_map
-
- def setup
- cleanup_identity_map
- end
-
- def teardown
- ActiveRecord::SQLCounter.log.clear
- end
-
- def cleanup_identity_map
- ActiveRecord::IdentityMap.clear
- end
-
- def assert_date_from_db(expected, actual, message = nil)
- # SybaseAdapter doesn't have a separate column type just for dates,
- # so the time is in the string and incorrectly formatted
- if current_adapter?(:SybaseAdapter)
- assert_equal expected.to_s, actual.to_date.to_s, message
- else
- assert_equal expected.to_s, actual.to_s, message
- end
- end
-
- def assert_sql(*patterns_to_match)
- ActiveRecord::SQLCounter.log = []
- yield
- ActiveRecord::SQLCounter.log
- ensure
- failed_patterns = []
- patterns_to_match.each do |pattern|
- failed_patterns << pattern unless ActiveRecord::SQLCounter.log.any?{ |sql| pattern === sql }
- end
- assert failed_patterns.empty?, "Query pattern(s) #{failed_patterns.map{ |p| p.inspect }.join(', ')} not found.#{ActiveRecord::SQLCounter.log.size == 0 ? '' : "\nQueries:\n#{ActiveRecord::SQLCounter.log.join("\n")}"}"
- end
-
- def assert_queries(num = 1)
- ActiveRecord::SQLCounter.log = []
- yield
- ensure
- assert_equal num, ActiveRecord::SQLCounter.log.size, "#{ActiveRecord::SQLCounter.log.size} instead of #{num} queries were executed.#{ActiveRecord::SQLCounter.log.size == 0 ? '' : "\nQueries:\n#{ActiveRecord::SQLCounter.log.join("\n")}"}"
- end
-
- def assert_no_queries(&block)
- prev_ignored_sql = ActiveRecord::SQLCounter.ignored_sql
- ActiveRecord::SQLCounter.ignored_sql = []
- assert_queries(0, &block)
- ensure
- ActiveRecord::SQLCounter.ignored_sql = prev_ignored_sql
- end
-
- def sqlite3? connection
- connection.class.name.split('::').last == "SQLite3Adapter"
- end
- end
-end