summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-06-03 17:09:57 +0200
committerStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-06-03 17:09:57 +0200
commit21995072fb0e57c8209460936c0e5b322a1547c3 (patch)
treef2d7dbb02ac37f433cad1b2ecc1398f1f91bd189 /test
parentcc6b71ffef4d781890cf7eef64ded71abb099a7f (diff)
PagerGroup stuff
Diffstat (limited to 'test')
-rw-r--r--test/functional/pager_group_destinations_controller_test.rb49
-rw-r--r--test/functional/pager_groups_controller_test.rb49
-rw-r--r--test/unit/pager_group_destination_test.rb7
-rw-r--r--test/unit/pager_group_test.rb7
4 files changed, 112 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
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
diff --git a/test/unit/pager_group_destination_test.rb b/test/unit/pager_group_destination_test.rb
new file mode 100644
index 0000000..cc98606
--- /dev/null
+++ b/test/unit/pager_group_destination_test.rb
@@ -0,0 +1,7 @@
+require 'test_helper'
+
+class PagerGroupDestinationTest < ActiveSupport::TestCase
+ def test_should_be_valid
+ assert PagerGroupDestination.new.valid?
+ end
+end
diff --git a/test/unit/pager_group_test.rb b/test/unit/pager_group_test.rb
new file mode 100644
index 0000000..252ec61
--- /dev/null
+++ b/test/unit/pager_group_test.rb
@@ -0,0 +1,7 @@
+require 'test_helper'
+
+class PagerGroupTest < ActiveSupport::TestCase
+ def test_should_be_valid
+ assert PagerGroup.new.valid?
+ end
+end