Sha256: 46539eb87d97c12126a33a7a6029dce05acd7db3765659014c88faca02384566
Contents?: true
Size: 646 Bytes
Versions: 21
Compression:
Stored size: 646 Bytes
Contents
require File.join(File.dirname(File.expand_path(__FILE__)), "spec_helper") describe "error_sql extension" do before do @db = Sequel.mock(:fetch=>proc{|sql| @db.log_yield(sql){raise StandardError}}).extension(:error_sql) end specify "should have Sequel::DatabaseError#sql give the SQL causing the error" do @db["SELECT"].all rescue (e = $!) e.sql.should == "SELECT" end specify "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.should == "SELECT" end end
Version data entries
21 entries across 21 versions & 2 rubygems