blob: e18892821d46c9809db46b7708ea6d78d171e660 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
require "cases/helper"
require 'models/developer'
module ActiveRecord
module ConnectionAdapters
class SQLite3Adapter
class ExplainTest < ActiveRecord::TestCase
fixtures :developers
def test_explain_for_one_query
explain = Developer.where(:id => 1).explain
assert_match(/(SEARCH )?TABLE developers USING (INTEGER )?PRIMARY KEY/, explain)
end
def test_explain_with_eager_loading
explain = Developer.where(:id => 1).includes(:audit_logs).explain
assert_match(/(SEARCH )?TABLE developers USING (INTEGER )?PRIMARY KEY/, explain)
assert_match(/(SCAN )?TABLE audit_logs/, explain)
end
end
end
end
end
|