1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot.git synced 2022-11-09 11:43:51 -05:00
thoughtbot--factory_bot/test/sequence_test.rb
2008-06-01 10:46:50 -07:00

29 lines
491 B
Ruby

require(File.join(File.dirname(__FILE__), 'test_helper'))
class SequenceTest < Test::Unit::TestCase
context "a sequence" do
setup do
@sequence = Factory::Sequence.new {|n| "=#{n}" }
end
should "start with a value of 1" do
assert_equal "=1", @sequence.next
end
context "after being called" do
setup do
@sequence.next
end
should "use the next value" do
assert_equal "=2", @sequence.next
end
end
end
end