Sha256: f6a29a487a2fa60de0dc189aedbd3f6bff4d79606836222ea15ff0f629d4d0c9

Contents?: true

Size: 421 Bytes

Versions: 5

Compression:

Stored size: 421 Bytes

Contents

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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
activerecord-1.13.0 test/synonym_test_oci.rb
activerecord-1.12.1 test/synonym_test_oci.rb
activerecord-1.12.2 test/synonym_test_oci.rb
activerecord-1.13.2 test/synonym_test_oci.rb
activerecord-1.13.1 test/synonym_test_oci.rb