1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/test/test_factory_methods.rb
2010-12-14 20:31:49 -08:00

27 lines
566 B
Ruby

require 'helper'
module Arel
module FactoryMethods
class TestFactoryMethods < MiniTest::Unit::TestCase
class Factory
include Arel::FactoryMethods
end
def setup
@factory = Factory.new
end
def test_create_join
join = @factory.create_join :one, :two
assert_kind_of Nodes::Join, join
assert_equal :two, join.right
end
def test_create_on
on = @factory.create_on :one
assert_instance_of Nodes::On, on
assert_equal :one, on.expr
end
end
end
end