mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
631181ca18
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3718 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
17 lines
424 B
Ruby
17 lines
424 B
Ruby
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 < Test::Unit::TestCase
|
|
|
|
def test_oracle_synonym
|
|
topic = Topic.new
|
|
subject = Subject.new
|
|
assert_equal(topic.attributes, subject.attributes)
|
|
end
|
|
|
|
end
|