summaryrefslogtreecommitdiff
path: root/test/controllers/pms_controller_test.rb
diff options
context:
space:
mode:
authorAndrewMurrell <amurrel@purdue.edu>2014-02-18 20:42:51 -0500
committerAndrewMurrell <amurrel@purdue.edu>2014-02-18 20:42:51 -0500
commit96b97d691f6889004c38bef15411bc27e448fda1 (patch)
tree7105a54b40fc11ca38a67ff2f520cc977532da44 /test/controllers/pms_controller_test.rb
parent1b95d76d2bded709f512ccdca851388b8691708f (diff)
Changes to generate.sh
Diffstat (limited to 'test/controllers/pms_controller_test.rb')
-rw-r--r--test/controllers/pms_controller_test.rb49
1 files changed, 49 insertions, 0 deletions
diff --git a/test/controllers/pms_controller_test.rb b/test/controllers/pms_controller_test.rb
new file mode 100644
index 0000000..ccbe7b1
--- /dev/null
+++ b/test/controllers/pms_controller_test.rb
@@ -0,0 +1,49 @@
+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: @pm.author, message: @pm.message, recipient: @pm.recipient }
+ 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: @pm.author, message: @pm.message, recipient: @pm.recipient }
+ 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