aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/test_select_manager.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/test_select_manager.rb b/test/test_select_manager.rb
index ada0f1423d..6603102a3a 100644
--- a/test/test_select_manager.rb
+++ b/test/test_select_manager.rb
@@ -956,5 +956,13 @@ module Arel
manager.to_sql.must_be_like 'SELECT "users"."id" FROM "users"'
end
end
+
+ describe 'source' do
+ it 'returns the join source of the select core' do
+ table = Table.new :users
+ manager = Arel::SelectManager.new Table.engine
+ manager.source.must_equal manager.ast.cores.last.source
+ end
+ end
end
end