Sha256: 9c6aa449bbc016fc92756a618b0151bba660f391a20f7ac8107cede4df7b10e5
Contents?: true
Size: 610 Bytes
Versions: 45
Compression:
Stored size: 610 Bytes
Contents
require_relative "spec_helper" describe "error_sql extension" do before do @db = Sequel.mock(:fetch=>proc{|sql| @db.log_connection_yield(sql, nil){raise StandardError}}).extension(:error_sql) end it "should have Sequel::DatabaseError#sql give the SQL causing the error" do @db["SELECT"].all rescue (e = $!) e.sql.must_equal "SELECT" end it "should have Sequel::DatabaseError#sql give the SQL causing the error when using a logger" do l = Object.new def l.method_missing(*) end @db.loggers = [l] @db["SELECT"].all rescue (e = $!) e.sql.must_equal "SELECT" end end
Version data entries
45 entries across 41 versions & 2 rubygems