blob: 7f8751281ea38a13be96f5be2246122128a104ef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
require "cases/helper"
require "active_support/core_ext/numeric/bytes"
class PostgresqlIntegerTest < ActiveRecord::TestCase
class PgInteger < ActiveRecord::Base
end
def setup
@connection = ActiveRecord::Base.connection
@connection.transaction do
@connection.create_table "pg_integers", force: true do |t|
t.integer :quota, limit: 8, default: 2.gigabytes
end
end
end
teardown do
@connection.execute "drop table if exists pg_integers"
end
test "schema properly respects bigint ranges" do
assert_equal 2.gigabytes, PgInteger.new.quota
end
end
|