Sha256: 23a37ffc004083abb38763c7721dbaa7f2545e3622a70f971a8cc112260852fe

Contents?: true

Size: 1.62 KB

Versions: 1

Compression:

Stored size: 1.62 KB

Contents

require File.dirname(__FILE__) + '<%= '/..' * controller_class_nesting_depth %>/../test_helper'
require '<%= controller_file_path %>_controller'

# Re-raise errors caught by the controller.
class <%= controller_class_name %>Controller; def rescue_action(e) raise e end; end

class <%= controller_class_name %>ControllerTest < Test::Unit::TestCase
  fixtures :<%= table_name %>

  def setup
    @controller = <%= controller_class_name %>Controller.new
    @request    = ActionController::TestRequest.new
    @response   = ActionController::TestResponse.new
  end

  def test_should_get_index
    get :index
    assert_response :success
    assert assigns(:<%= table_name %>)
  end

  def test_should_get_new
    @request.accept = 'application/xml'  
    get :new
    assert_response :success
  end

  def test_should_create_<%= file_name %>
    assert_difference('<%= class_name %>.count') do
      post :create, :<%= file_name %> => { }
    end

    assert_redirected_to <%= file_name %>_path(assigns(:<%= file_name %>))
  end

  def test_should_show_<%= file_name %>
    @request.accept = 'application/xml'  
    get :show, :id => 1
    assert_response :success
  end

  def test_should_get_edit
    #TODO: replace this with a real test once views are in place
    assert true
  end

  def test_should_update_<%= file_name %>
    put :update, :id => 1, :<%= file_name %> => { }
    assert_redirected_to <%= file_name %>_path(assigns(:<%= file_name %>))
  end

  def test_should_destroy_<%= file_name %>
    assert_difference('<%= class_name %>.count', -1) do
      delete :destroy, :id => 1
    end

    assert_redirected_to <%= table_name %>_path
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
resource_this-1.0.0 generators/resource_this/templates/functional_test.rb