blob: 47e8859ac66f27ad3d566d6cb82a0f1a0ae551c1 (
plain) (
tree)
|
|
require File.expand_path('../../../helper', __FILE__)
class FirebirdConnectionTest < ActiveRecord::TestCase
def test_charset_properly_set
fb_conn = ActiveRecord::Base.connection.instance_variable_get(:@connection)
assert_equal 'UTF8', fb_conn.database.character_set
end
end
|