summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/factories/geo_ip_countries.rb13
-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
-rw-r--r--test/unit/generic_file_test.rb7
-rw-r--r--test/unit/geo_ip_country_test.rb7
-rw-r--r--test/unit/pager_group_destination_test.rb7
-rw-r--r--test/unit/pager_group_test.rb7
-rw-r--r--test/unit/voicemail_account_test.rb7
9 files changed, 195 insertions, 0 deletions
diff --git a/test/factories/geo_ip_countries.rb b/test/factories/geo_ip_countries.rb
new file mode 100644
index 0000000..b6a690a
--- /dev/null
+++ b/test/factories/geo_ip_countries.rb
@@ -0,0 +1,13 @@
+# Read about factories at https://github.com/thoughtbot/factory_girl
+
+FactoryGirl.define do
+ factory :geo_ip_country do
+ from "MyString"
+ to "MyString"
+ n_from 1
+ n_to 1
+ country_id 1
+ country_code "MyString"
+ country_name "MyString"
+ end
+end
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
diff --git a/test/unit/generic_file_test.rb b/test/unit/generic_file_test.rb
new file mode 100644
index 0000000..e7fa53d
--- /dev/null
+++ b/test/unit/generic_file_test.rb
@@ -0,0 +1,7 @@
+require 'test_helper'
+
+class GenericFileTest < ActiveSupport::TestCase
+ def test_should_be_valid
+ assert GenericFile.new.valid?
+ end
+end
diff --git a/test/unit/geo_ip_country_test.rb b/test/unit/geo_ip_country_test.rb
new file mode 100644
index 0000000..05d7893
--- /dev/null
+++ b/test/unit/geo_ip_country_test.rb
@@ -0,0 +1,7 @@
+require 'test_helper'
+
+class GeoIpCountryTest < ActiveSupport::TestCase
+ # test "the truth" do
+ # assert true
+ # 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
diff --git a/test/unit/voicemail_account_test.rb b/test/unit/voicemail_account_test.rb
new file mode 100644
index 0000000..b878c67
--- /dev/null
+++ b/test/unit/voicemail_account_test.rb
@@ -0,0 +1,7 @@
+require 'test_helper'
+
+class VoicemailAccountTest < ActiveSupport::TestCase
+ def test_should_be_valid
+ assert VoicemailAccount.new.valid?
+ end
+end