From 21995072fb0e57c8209460936c0e5b322a1547c3 Mon Sep 17 00:00:00 2001 From: Stefan Wintermeyer Date: Mon, 3 Jun 2013 17:09:57 +0200 Subject: PagerGroup stuff --- .../pager_group_destinations_controller_test.rb | 49 ++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 test/functional/pager_group_destinations_controller_test.rb (limited to 'test/functional/pager_group_destinations_controller_test.rb') 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 -- cgit v1.2.3