1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

adding tests for factory methods

This commit is contained in:
Aaron Patterson 2010-12-13 22:16:29 -08:00
parent 1c77cf2cc4
commit f694d9e7c3

View file

@ -0,0 +1,27 @@
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, :three
assert_kind_of Nodes::Join, join
assert_equal :three, join.constraint
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