File: lib/generators/extension_controller/templates/view_spec.rb

Code

Code

   1  require File.dirname(__FILE__) + '<%= '/..' * class_nesting_depth %>/../../spec_helper'
   2 
   3  describe "/<%= class_name.underscore %>/<%= action %>" do
   4    before do
   5      render '<%= class_name.underscore %>/<%= action %>'
   6    end
   7    
   8    #Delete this example and add some real ones or delete this file
   9    it "should tell you where to find the file" do
  10      response.should have_tag('p', 'Find me in app/views/<%= class_name.underscore %>/<%= action %>.rhtml')
  11    end
  12  end