aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/aaa_create_tables_test.rb
blob: 3911afac4940a2cd7b8933b57ba6ff5cbf325b6e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# The filename begins with "aaa" to ensure this is the first test.
require "cases/helper"

class AAACreateTablesTest < ActiveRecord::TestCase
  self.use_transactional_fixtures = false

  def test_load_schema
    eval(File.read(SCHEMA_ROOT + "/schema.rb"))
    if File.exists?(adapter_specific_schema_file)
      eval(File.read(adapter_specific_schema_file))
    end
    assert true
  end

  def test_drop_and_create_courses_table
    eval(File.read(SCHEMA_ROOT + "/schema2.rb"))
    assert true
  end

  private
  def adapter_specific_schema_file
    SCHEMA_ROOT + '/' + ActiveRecord::Base.connection.adapter_name.downcase + '_specific_schema.rb'
  end
end