Sha256: 55047b4ed84c29b5ae39d11a5bc0f18ccebc93d9cc0da6f8ebf01803c8a3a200

Contents?: true

Size: 1.19 KB

Versions: 6

Compression:

Stored size: 1.19 KB

Contents

require 'test_helper'

module Wafflemix
  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: { draft: @post.draft, link_url: @post.link_url, published_at: @post.published_at }
      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: { draft: @post.draft, link_url: @post.link_url, published_at: @post.published_at }
      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
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
wafflemix-0.0.6 test/functional/wafflemix/posts_controller_test.rb
wafflemix-0.0.5 test/functional/wafflemix/posts_controller_test.rb
wafflemix-0.0.4 test/functional/wafflemix/posts_controller_test.rb
wafflemix-0.0.3 test/functional/wafflemix/posts_controller_test.rb
wafflemix-0.0.2 test/functional/wafflemix/posts_controller_test.rb
wafflemix-0.0.1 test/functional/wafflemix/posts_controller_test.rb