summaryrefslogtreecommitdiff
path: root/test/functional/pager_group_destinations_controller_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/pager_group_destinations_controller_test.rb')
-rw-r--r--test/functional/pager_group_destinations_controller_test.rb49
1 files changed, 49 insertions, 0 deletions
diff --git a/test/functional/pager_group_destinations_controller_test.rb b/test/functional/pager_group_destinations_controller_test.rb
new file mode 100644
index 0000000..1d1912a
--- /dev/null
+++ b/test/functional/pager_group_destinations_controller_test.rb
@@ -0,0 +1,49 @@
+require 'test_helper'
+
+class PagerGroupDestinationsControllerTest < ActionController::TestCase
+ setup do
+ @pager_group_destination = pager_group_destinations(:one)
+ end
+
+ test "should get index" do
+ get :index
+ assert_response :success
+ assert_not_nil assigns(:pager_group_destinations)
+ end
+
+ test "should get new" do
+ get :new
+ assert_response :success
+ end
+
+ test "should create pager_group_destination" do
+ assert_difference('PagerGroupDestination.count') do
+ post :create, pager_group_destination: @pager_group_destination.attributes
+ end
+
+ assert_redirected_to pager_group_destination_path(assigns(:pager_group_destination))
+ end
+
+ test "should show pager_group_destination" do
+ get :show, id: @pager_group_destination.to_param
+ assert_response :success
+ end
+
+ test "should get edit" do
+ get :edit, id: @pager_group_destination.to_param
+ assert_response :success
+ end
+
+ test "should update pager_group_destination" do
+ put :update, id: @pager_group_destination.to_param, pager_group_destination: @pager_group_destination.attributes
+ assert_redirected_to pager_group_destination_path(assigns(:pager_group_destination))
+ end
+
+ test "should destroy pager_group_destination" do
+ assert_difference('PagerGroupDestination.count', -1) do
+ delete :destroy, id: @pager_group_destination.to_param
+ end
+
+ assert_redirected_to pager_group_destinations_path
+ end
+end