aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/test/synonym_test_oracle.rb
blob: 2eff36b097f4af548c67e6ecccb0e4960e1f46f9 (plain) (tree)
1
2
3
4
5
6
7
8
9







                                                             
                                                 


                         
                         



                                                      
require 'abstract_unit'
require 'fixtures/topic'
require 'fixtures/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 < ActiveSupport::TestCase

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