Sha256: 2561c35dc9d48ca3760c83c2cef5ec6423d60e20f522d316bd51d1a44c006de7

Contents?: true

Size: 991 Bytes

Versions: 5

Compression:

Stored size: 991 Bytes

Contents

require 'test_helper'

class PostsControllerTest < ActionController::TestCase
  setup do
    @post = posts(:one)
  end

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

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

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

    assert_redirected_to post_path(assigns(:post))
  end

  test "should show post" do
    get :show, :id => @post
    assert_response :success
  end

  test "should get edit" do
    get :edit, :id => @post
    assert_response :success
  end

  test "should update post" do
    put :update, :id => @post, :post => @post.attributes
    assert_redirected_to post_path(assigns(:post))
  end

  test "should destroy post" do
    assert_difference('Post.count', -1) do
      delete :destroy, :id => @post
    end

    assert_redirected_to posts_path
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ajax_pagination-0.5.0 spec/rails_app/test/functional/posts_controller_test.rb
ajax_pagination-0.4.0 spec/rails_app/test/functional/posts_controller_test.rb
ajax_pagination-0.3.0 spec/rails_app/test/functional/posts_controller_test.rb
ajax_pagination-0.2.0 spec/rails_app/test/functional/posts_controller_test.rb
ajax_pagination-0.1.0 spec/rails_app/test/functional/posts_controller_test.rb