search for: recipecontrollertest

Displaying 1 result from an estimated 1 matches for "recipecontrollertest".

2005 Mar 09
9
Unit testing + instance variables
...ng class RecipeController < ApplicationController def list @recipes = Recipe.find_all @categories = Category.find_all end end >> # My test file require File.dirname(__FILE__) + ''/../test_helper'' require ''recipe_controller'' class RecipeControllerTest < Test::Unit::TestCase def setup @controller = RecipeController.new @request = ActionController::TestRequest.new @response = ActionController::TestResponse.new create_fixtures "recipes" create_fixtures "categories" end...