summaryrefslogtreecommitdiff
path: root/test/controllers/pms_controller_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/controllers/pms_controller_test.rb')
-rw-r--r--test/controllers/pms_controller_test.rb49
1 files changed, 0 insertions, 49 deletions
diff --git a/test/controllers/pms_controller_test.rb b/test/controllers/pms_controller_test.rb
deleted file mode 100644
index 18b2449..0000000
--- a/test/controllers/pms_controller_test.rb
+++ /dev/null
@@ -1,49 +0,0 @@
-require 'test_helper'
-
-class PmsControllerTest < ActionController::TestCase
- setup do
- @pm = pms(:one)
- end
-
- test "should get index" do
- get :index
- assert_response :success
- assert_not_nil assigns(:pms)
- end
-
- test "should get new" do
- get :new
- assert_response :success
- end
-
- test "should create pm" do
- assert_difference('Pm.count') do
- post :create, pm: { author_id: @pm.author_id, message: @pm.message, recipient_id: @pm.recipient_id }
- end
-
- assert_redirected_to pm_path(assigns(:pm))
- end
-
- test "should show pm" do
- get :show, id: @pm
- assert_response :success
- end
-
- test "should get edit" do
- get :edit, id: @pm
- assert_response :success
- end
-
- test "should update pm" do
- patch :update, id: @pm, pm: { author_id: @pm.author_id, message: @pm.message, recipient_id: @pm.recipient_id }
- assert_redirected_to pm_path(assigns(:pm))
- end
-
- test "should destroy pm" do
- assert_difference('Pm.count', -1) do
- delete :destroy, id: @pm
- end
-
- assert_redirected_to pms_path
- end
-end