blob: 911e3ae98069004c2365c76538021acbcace8c28 (
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
25
26
27
28
29
30
31
32
33
|
require "test_helper"
class TargetsControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get targets_index_url
assert_response :success
end
test "should get new" do
get targets_new_url
assert_response :success
end
test "should get create" do
get targets_create_url
assert_response :success
end
test "should get edit" do
get targets_edit_url
assert_response :success
end
test "should get update" do
get targets_update_url
assert_response :success
end
test "should get show" do
get targets_show_url
assert_response :success
end
end
|