blob: f57ea686a5b9fde6119f92b0c7d618306b9fb62a (
plain) (
blame)
1
2
3
4
5
6
7
8
|
require "cases/helper"
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
|