mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
the oracle adapter lives in a gem. Tests should live there as well.
This commit is contained in:
parent
36053ce92c
commit
951c9ed31d
1 changed files with 0 additions and 17 deletions
|
@ -1,17 +0,0 @@
|
|||
require "cases/helper"
|
||||
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
|
Loading…
Reference in a new issue