Formatting

This commit is contained in:
Michael Miller 2018-11-20 12:48:19 -07:00
parent 1802f27f68
commit b8ee29ab0e

View file

@ -180,8 +180,8 @@ describe Spectator::ExampleIterator do
it "returns 'stop' after the end has been reached" do it "returns 'stop' after the end has been reached" do
example = PassingExample.create example = PassingExample.create
iterator = Spectator::ExampleIterator.new(example.group) iterator = Spectator::ExampleIterator.new(example.group)
iterator.next # Should return example. iterator.next # Should return example.
iterator.next # Should return "stop". iterator.next # Should return "stop".
iterator.next.should be_a(Iterator::Stop) # Should still return "stop". iterator.next.should be_a(Iterator::Stop) # Should still return "stop".
end end
end end