blob: 33f1a4767810226d81014321ac6970e1cd760aa4 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
require "test_helper"
class Admin::CommentsControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get admin_comments_index_url
assert_response :success
end
end
|