blob: 21b97b3b39cf9eedfafc2493a6b554dafb2efe75 (
plain) (
tree)
|
|
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
|