blob: 4f5939b66763333e5e7c2162446b0ef51a681d72 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require "test_helper"
class Admin::QuotesControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get admin_quotes_index_url
assert_response :success
end
test "should get pending" do
get admin_quotes_pending_url
assert_response :success
end
end
|