We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03caae8 commit 0dd95faCopy full SHA for 0dd95fa
test/sqlite_test.rb
@@ -46,7 +46,7 @@ def assert_tables(file, tables)
46
tbl = t.first.to_s
47
cols = t.values_at(1).sort.join(",")
48
raise "No columns found for table #{tbl} in #{tables}" if cols.empty?
49
- refute schema[tbl].nil?, "Table '#{tbl}' not found in #{schema}"
+ refute_nil schema[tbl], "Table '#{tbl}' not found in #{schema}"
50
assert_equal cols, schema[tbl], "Columns mismatch for '#{tbl}'"
51
end
52
0 commit comments