aboutsummaryrefslogtreecommitdiffstats
path: root/test/controllers/report_controller_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/controllers/report_controller_test.rb')
-rw-r--r--test/controllers/report_controller_test.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/controllers/report_controller_test.rb b/test/controllers/report_controller_test.rb
new file mode 100644
index 0000000..1949a88
--- /dev/null
+++ b/test/controllers/report_controller_test.rb
@@ -0,0 +1,24 @@
+require 'test_helper'
+
+class ReportControllerTest < ActionController::TestCase
+ test "should get index" do
+ get :index
+ assert_response :success
+ end
+
+ test "should get tweet" do
+ get :tweet
+ assert_response :success
+ end
+
+ test "should get spam" do
+ get :spam
+ assert_response :success
+ end
+
+ test "should get issue" do
+ get :issue
+ assert_response :success
+ end
+
+end