require File.dirname(__FILE__) + '/../spec_helper' context "The InformationController" do inherit Test::Unit::TestCase controller_name :information specify "should be a InformationController" do controller.should_be_an_instance_of InformationController end specify "should respond to GET of 'index'" do get :index response.should_be_success end end