Sha256: b2dc3d20a52926d419640c56318a268573c8c4d44a953e1f2b8051c473344302
Contents?: true
Size: 371 Bytes
Versions: 19
Compression:
Stored size: 371 Bytes
Contents
require File.expand_path(File.dirname(__FILE__) + '/spec_helper') describe "the connection adapter" do subject { ActiveRecord::Base.connection } it { should respond_to(:execute_without_auditing) } it "should work for both execute and execute_without_auditing" do subject.execute("SELECT 1 = 1") subject.execute_without_auditing("SELECT 1 = 1") end end
Version data entries
19 entries across 19 versions & 1 rubygems