instiki/vendor/rails/activerecord/test/cases/connection_test_firebird.rb

9 lines
256 B
Ruby
Raw Normal View History

require "cases/helper"
2007-02-10 00:12:31 +01:00
class FirebirdConnectionTest < ActiveRecord::TestCase
2007-02-10 00:12:31 +01:00
def test_charset_properly_set
fb_conn = ActiveRecord::Base.connection.instance_variable_get(:@connection)
assert_equal 'UTF8', fb_conn.database.character_set
end
end