Skip to content

Commit

Permalink
Merge pull request #822 from suketa/add_skip_message
Browse files Browse the repository at this point in the history
add skip message.
  • Loading branch information
suketa authored Nov 24, 2024
2 parents 26558c2 + 7360a56 commit 217b114
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/duckdb_test/result_chunk_each_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def do_query_result_assertions(res, ruby_val, db_type, klass)
TEST_TABLES.each_with_index do |spec, i|
do_test, db_type, db_declaration, string_rep, klass, ruby_val = *spec
define_method :"test_#{db_type}_type#{i}" do
skip if do_test == :ng
skip spec.to_s if do_test == :ng

prepare_test_table_and_data(db_declaration, db_type, string_rep)

Expand All @@ -163,7 +163,7 @@ def do_query_result_assertions(res, ruby_val, db_type, klass)
end

define_method :"test_stream_#{db_type}_type#{i}" do
skip if do_test == :ng
skip spec.to_s if do_test == :ng

prepare_test_table_and_data(db_declaration, db_type, string_rep)

Expand Down

0 comments on commit 217b114

Please sign in to comment.