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:
parent
5b6121aa34
commit
253b472838
1 changed files with 14 additions and 0 deletions
|
@ -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
|
Loading…
Reference in a new issue