We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 213ec96 commit 15f4755Copy full SHA for 15f4755
test/db/postgresql/quoting_test.rb
@@ -9,13 +9,13 @@ def test_type_cast_true
9
c = Column.new(nil, 1, 'boolean')
10
assert_equal 't', connection.type_cast(true, nil)
11
assert_equal 't', connection.type_cast(true, c)
12
- end if ar_version('3.0')
+ end if ar_version('3.1')
13
14
def test_type_cast_false
15
16
assert_equal 'f', connection.type_cast(false, nil)
17
assert_equal 'f', connection.type_cast(false, c)
18
19
20
def test_type_cast_cidr
21
ip = IPAddr.new('255.0.0.0/8')
0 commit comments