Skip to content

Instantly share code, notes, and snippets.

@lmarburger
Created June 13, 2009 17:58
Show Gist options
  • Save lmarburger/129359 to your computer and use it in GitHub Desktop.
Save lmarburger/129359 to your computer and use it in GitHub Desktop.
require 'test_helper'
class MonkeysControllerTest < ActionController::TestCase
100.times do |i|
context "Test #{ i }" do
setup do
2.times { Factory.build :monkey }
get :index
end
should_assign_to(:monkeys) { Monkey.all }
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment