1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

forgot to add this test case

This commit is contained in:
Aaron Patterson 2011-07-22 09:12:22 -07:00
parent 5b6121aa34
commit 253b472838

View file

@ -0,0 +1,14 @@
require "cases/helper"
module ActiveRecord
class PostgresqlConnectionTest < ActiveRecord::TestCase
def setup
super
@connection = ActiveRecord::Base.connection
end
def test_encoding
assert_not_nil @connection.encoding
end
end
end