aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/connection_test_firebird.rb
blob: 1280025e1f1b5beaa26876908f8ef7ab74ebe9e6 (plain) (blame)
1
2
3
4
5
6
7
8
require 'abstract_unit'

class FirebirdConnectionTest < ActiveSupport::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