blob: 4f5939b66763333e5e7c2162446b0ef51a681d72 (
plain) (
tree)
|
|
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
|