aboutsummaryrefslogtreecommitdiffstats
path: root/test/controllers/report_controller_test.rb
diff options
context:
space:
mode:
authorre4k <re4k@re4k.info>2013-04-04 03:07:35 +0900
committerre4k <re4k@re4k.info>2013-04-04 03:07:35 +0900
commit61dde16fd55babd2ccf5ff6a9c8be1f600868d9b (patch)
treeaf4e6f14ad16f87e911426e950ff1d72128f8328 /test/controllers/report_controller_test.rb
parent1b49426b0c935a44262384acb526e5fbb86598c7 (diff)
downloadaclog-61dde16fd55babd2ccf5ff6a9c8be1f600868d9b.tar.gz
Add repoting copied tweets form
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