~michaelforrest/use-case-mapper/trunk

« back to all changes in this revision

Viewing changes to vendor/rails/activerecord/test/cases/connection_test_firebird.rb

  • Committer: Richard Lee (Canonical)
  • Date: 2010-10-15 15:17:58 UTC
  • mfrom: (190.1.3 use-case-mapper)
  • Revision ID: richard.lee@canonical.com-20101015151758-wcvmfxrexsongf9d
Merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
require "cases/helper"
2
 
 
3
 
class FirebirdConnectionTest < ActiveRecord::TestCase
4
 
  def test_charset_properly_set
5
 
    fb_conn = ActiveRecord::Base.connection.instance_variable_get(:@connection)
6
 
    assert_equal 'UTF8', fb_conn.database.character_set
7
 
  end
8
 
end