diff options
author | Kuldeep Aggarwal <kd.engineer@yahoo.co.in> | 2014-06-11 00:08:19 +0530 |
---|---|---|
committer | Kuldeep Aggarwal <kd.engineer@yahoo.co.in> | 2014-06-11 00:08:19 +0530 |
commit | 16db90d13ffbb6cd4ad6e128b20ef0f801a2e4a1 (patch) | |
tree | 1773f56bca4c7e84d140ac094d50522566f0e955 /activerecord/test | |
parent | 6cef56ffac10a3db2b22a45140c5d747e526b6cb (diff) | |
download | rails-16db90d13ffbb6cd4ad6e128b20ef0f801a2e4a1.tar.gz rails-16db90d13ffbb6cd4ad6e128b20ef0f801a2e4a1.tar.bz2 rails-16db90d13ffbb6cd4ad6e128b20ef0f801a2e4a1.zip |
remove deprecation call while initializing `ClassCache` object
Diffstat (limited to 'activerecord/test')
-rw-r--r-- | activerecord/test/cases/fixtures_test.rb | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/activerecord/test/cases/fixtures_test.rb b/activerecord/test/cases/fixtures_test.rb index 8bbc0af758..042fdaf0bb 100644 --- a/activerecord/test/cases/fixtures_test.rb +++ b/activerecord/test/cases/fixtures_test.rb @@ -84,12 +84,6 @@ class FixturesTest < ActiveRecord::TestCase assert fixtures.detect { |f| f.name == 'collections' }, "no fixtures named 'collections' in #{fixtures.map(&:name).inspect}" end - def test_create_symbol_fixtures_is_deprecated - assert_deprecated do - ActiveRecord::FixtureSet.create_fixtures(FIXTURES_ROOT, :collections, :collections => 'Course') { Course.connection } - end - end - def test_attributes topics = create_fixtures("topics").first assert_equal("The First Topic", topics["first"]["title"]) |