summaryrefslogtreecommitdiff
path: root/test/unit
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit')
-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
5 files changed, 35 insertions, 0 deletions
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