aboutsummaryrefslogtreecommitdiff
blob: f6b2cc3838bb4a62ac110e3808234a07a4c3b177 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'test_helper'

class UseflagsControllerTest < ActionController::TestCase
  test "should get index" do
    get :index
    assert_response :success
  end

  test "should get show" do
    get :show, params: { id: 'test' }
    assert_response :success
  end

  test "should get search" do
    get :search, params: { q: 'test' }
    assert_response :success
  end

end