aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/adapters/oracle/synonym_test.rb
blob: 4cbca6dcb2f1911ac5f6ee7d6546b1f8405b549f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require File.expand_path('../../../helper', __FILE__)
require 'models/topic'
require 'models/subject'

# confirm that synonyms work just like tables; in this case
# the "subjects" table in Oracle (defined in oci.sql) is just
# a synonym to the "topics" table

class TestOracleSynonym < ActiveRecord::TestCase

  def test_oracle_synonym
    topic = Topic.new
    subject = Subject.new
    assert_equal(topic.attributes, subject.attributes)
  end

end