mirror of
https://github.com/github/rails.git
synced 2026-02-12 23:25:00 -05:00
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8681 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
9 lines
256 B
Ruby
9 lines
256 B
Ruby
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
|