summaryrefslogtreecommitdiff
path: root/test/functional
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional')
-rw-r--r--test/functional/generic_files_controller_test.rb49
-rw-r--r--test/functional/pager_group_destinations_controller_test.rb49
-rw-r--r--test/functional/pager_groups_controller_test.rb49
3 files changed, 147 insertions, 0 deletions
diff --git a/test/functional/generic_files_controller_test.rb b/test/functional/generic_files_controller_test.rb
new file mode 100644
index 0000000..ef0a780
--- /dev/null
+++ b/test/functional/generic_files_controller_test.rb
@@ -0,0 +1,49 @@
+require 'test_helper'
+
+class GenericFilesControllerTest < ActionController::TestCase
+ setup do
+ @generic_file = generic_files(:one)
+ end
+
+ test "should get index" do
+ get :index
+ assert_response :success
+ assert_not_nil assigns(:generic_files)
+ end
+
+ test "should get new" do
+ get :new
+ assert_response :success
+ end
+
+ test "should create generic_file" do
+ assert_difference('GenericFile.count') do
+ post :create, generic_file: @generic_file.attributes
+ end
+
+ assert_redirected_to generic_file_path(assigns(:generic_file))
+ end
+
+ test "should show generic_file" do
+ get :show, id: @generic_file.to_param
+ assert_response :success
+ end
+
+ test "should get edit" do
+ get :edit, id: @generic_file.to_param
+ assert_response :success
+ end
+
+ test "should update generic_file" do
+ put :update, id: @generic_file.to_param, generic_file: @generic_file.attributes
+ assert_redirected_to generic_file_path(assigns(:generic_file))
+ end
+
+ test "should destroy generic_file" do
+ assert_difference('GenericFile.count', -1) do
+ delete :destroy, id: @generic_file.to_param
+ end
+
+ assert_redirected_to generic_files_path
+ end
+end
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
diff --git a/test/functional/pager_groups_controller_test.rb b/test/functional/pager_groups_controller_test.rb
new file mode 100644
index 0000000..049ca6c
--- /dev/null
+++ b/test/functional/pager_groups_controller_test.rb
@@ -0,0 +1,49 @@
+require 'test_helper'
+
+class PagerGroupsControllerTest < ActionController::TestCase
+ setup do
+ @pager_group = pager_groups(:one)
+ end
+
+ test "should get index" do
+ get :index
+ assert_response :success
+ assert_not_nil assigns(:pager_groups)
+ end
+
+ test "should get new" do
+ get :new
+ assert_response :success
+ end
+
+ test "should create pager_group" do
+ assert_difference('PagerGroup.count') do
+ post :create, pager_group: @pager_group.attributes
+ end
+
+ assert_redirected_to pager_group_path(assigns(:pager_group))
+ end
+
+ test "should show pager_group" do
+ get :show, id: @pager_group.to_param
+ assert_response :success
+ end
+
+ test "should get edit" do
+ get :edit, id: @pager_group.to_param
+ assert_response :success
+ end
+
+ test "should update pager_group" do
+ put :update, id: @pager_group.to_param, pager_group: @pager_group.attributes
+ assert_redirected_to pager_group_path(assigns(:pager_group))
+ end
+
+ test "should destroy pager_group" do
+ assert_difference('PagerGroup.count', -1) do
+ delete :destroy, id: @pager_group.to_param
+ end
+
+ assert_redirected_to pager_groups_path
+ end
+end