aboutsummaryrefslogtreecommitdiffstats
path: root/test/controllers/report_controller_test.rb
blob: 1949a88ca8a7679686142c49a9a9fde485b3b44b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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