aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/synonym_test_oracle.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/cases/synonym_test_oracle.rb')
-rw-r--r--activerecord/test/cases/synonym_test_oracle.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/activerecord/test/cases/synonym_test_oracle.rb b/activerecord/test/cases/synonym_test_oracle.rb
new file mode 100644
index 0000000000..c053bacb69
--- /dev/null
+++ b/activerecord/test/cases/synonym_test_oracle.rb
@@ -0,0 +1,17 @@
+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