diff options
author | Sean Griffin <sean@seantheprogrammer.com> | 2015-07-24 08:45:22 -0600 |
---|---|---|
committer | Sean Griffin <sean@seantheprogrammer.com> | 2015-07-24 08:45:22 -0600 |
commit | cc214cff7eb36e907df253542c8548f8bef230cb (patch) | |
tree | 502a8ffc098e484ec84d1af12375f48e56a4a0b7 /activerecord | |
parent | 40ce686b5732d0e3281c53e7a06d4d3f39a414ab (diff) | |
parent | 4f5f210a5947e02639abdcf12aa82cc8d081d994 (diff) | |
download | rails-cc214cff7eb36e907df253542c8548f8bef230cb.tar.gz rails-cc214cff7eb36e907df253542c8548f8bef230cb.tar.bz2 rails-cc214cff7eb36e907df253542c8548f8bef230cb.zip |
Merge pull request #20256 from arunagw/aa-remove-unused-rule-and-task-activerecord
Remove unused rule and task from activerecord
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/Rakefile | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/activerecord/Rakefile b/activerecord/Rakefile index a619204e6f..8ea22fd901 100644 --- a/activerecord/Rakefile +++ b/activerecord/Rakefile @@ -83,15 +83,6 @@ end task "isolated_test_#{adapter}" => ["#{adapter}:env", "test:isolated:#{adapter}"] end -rule '.sqlite3' do |t| - sh %Q{sqlite3 "#{t.name}" "create table a (a integer); drop table a;"} -end - -task :test_sqlite3 => [ - 'test/fixtures/fixture_database.sqlite3', - 'test/fixtures/fixture_database_2.sqlite3' -] - namespace :db do namespace :mysql do desc 'Build the MySQL test databases' |