require "rubygems" require "rails" require "rails/test_help" require "active_support/core_ext" require "set_builder" require "pry" require "support/fake_connection" require "minitest/reporters" Minitest::Reporters.use! Minitest::Reporters::SpecReporter.new # Sample class used by tests SetBuilder::ValueMap.register(:school, [[1, "Concordia"], [2, "McKendree"]]) $friend_traits = SetBuilder::Traits.new do trait('who are [not] "awesome"') do |query, scope| scope << {:conditions => {:awesome => true}} end trait('who [have not] "died"') do |query, scope| scope << {:conditions => {:alive => false}} end trait('who were "born" ') do |query, scope| scope << {:conditions => query.modifiers[0].build_conditions_for("friends.birthday")} end trait('whose "age" ') do |query, scope| scope << {:conditions => query.modifiers[0].build_conditions_for("friends.age")} end trait('who have [not] "attended" :school') do |query, scope| scope << { :joins => "INNER JOIN schools ON friends.school_id=schools.id", :conditions => {"schools.id" => query.direct_object} } end trait('whose "name" ') do |query, scope| scope << {:conditions => query.modifiers[0].build_conditions_for("friends.name")} end end class Friend # by stubbing out `all`, we can unit test `Set#perform` def self.all [] end # Stubs so that Arel can SQL attr_accessor :connection_pool def initialize @connection_pool = Fake::ConnectionPool.new end def connection connection_pool.connection end end Arel::Table.engine = Arel::Sql::Engine.new(Friend.new)