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.
2 parents c7964d7 + f34459d commit 364c821Copy full SHA for 364c821
1 file changed
test/duckdb_test/result_test.rb
@@ -160,7 +160,9 @@ def test_columns
160
assert_instance_of(DuckDB::Column, @result.columns.first)
161
end
162
163
- def test__column_type
+ def test__column_type # rubocop:disable Metrics/MultipleAssertions, Metrics/AbcSize, Metrics/MethodLength
164
+ # TODO: deprecate Result#_column_type private method.
165
+ assert_equal(1, @result.send(:_column_type, 0))
166
assert_equal(1, @result.send(:_column_type, 0))
167
assert_equal(3, @result.send(:_column_type, 1))
168
assert_equal(4, @result.send(:_column_type, 2))
0 commit comments