Sha256: 6c07dfddbe3366eb8bd5602393577ca4891b1b8f3fea41449c08943e7701ac5c

Contents?: true

Size: 1.07 KB

Versions: 10

Compression:

Stored size: 1.07 KB

Contents

require 'test_helper'

class PeopleControllerTest < ActionController::TestCase
  background do
    some_test_helper_returning_one
    @person = Person.create(:name => "one")
  end

  should "get index" do
    get :index
    assert_response :success
    assert_not_nil assigns(:people)
  end

  should "get new" do
    get :new
    assert_response :success
  end

  should "create person" do
    assert_difference('Person.count') do
      post :create, :person => @person.attributes
    end

    assert_redirected_to person_path(assigns(:person))
  end

  should "show person" do
    get :show, :id => @person.to_param
    assert_response :success
  end

  should "get edit" do
    get :edit, :id => @person.to_param
    assert_response :success
  end

  should "update person" do
    put :update, :id => @person.to_param, :person => @person.attributes
    assert_redirected_to person_path(assigns(:person))
  end

  should "destroy person" do
    assert_difference('Person.count', -1) do
      delete :destroy, :id => @person.to_param
    end

    assert_redirected_to people_path
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
fixture_background-0.9.10.1 test/rails3/test/functional/people_controller_test.rb
fixture_background-0.9.10 test/rails3/test/functional/people_controller_test.rb
fixture_background-0.9.9 test/rails3/test/functional/people_controller_test.rb
fixture_background-0.9.8 test/rails3/test/functional/people_controller_test.rb
fixture_background-0.9.7 test/rails3/test/functional/people_controller_test.rb
fixture_background-0.9.6 test/rails3/test/functional/people_controller_test.rb
fixture_background-0.9.5 test/rails3/test/functional/people_controller_test.rb
fixture_background-0.9.4 test/rails3/test/functional/people_controller_test.rb
fixture_background-0.9.3 test/rails3/test/functional/people_controller_test.rb
fixture_background-0.9.2 test/rails3/test/functional/people_controller_test.rb