first issue
[blog3.git] / test / functional / post2s_controller_test.rb
blob996989f80496570e74584a46d68349c992128c85
1 require 'test_helper'
3 class Post2sControllerTest < ActionController::TestCase
4   setup do
5     @post2 = post2s(:one)
6   end
8   test "should get index" do
9     get :index
10     assert_response :success
11     assert_not_nil assigns(:post2s)
12   end
14   test "should get new" do
15     get :new
16     assert_response :success
17   end
19   test "should create post2" do
20     assert_difference('Post2.count') do
21       post :create, post2: { content: @post2.content, name: @post2.name, title: @post2.title }
22     end
24     assert_redirected_to post2_path(assigns(:post2))
25   end
27   test "should show post2" do
28     get :show, id: @post2
29     assert_response :success
30   end
32   test "should get edit" do
33     get :edit, id: @post2
34     assert_response :success
35   end
37   test "should update post2" do
38     put :update, id: @post2, post2: { content: @post2.content, name: @post2.name, title: @post2.title }
39     assert_redirected_to post2_path(assigns(:post2))
40   end
42   test "should destroy post2" do
43     assert_difference('Post2.count', -1) do
44       delete :destroy, id: @post2
45     end
47     assert_redirected_to post2s_path
48   end
49 end