19 lines
398 B
Ruby
19 lines
398 B
Ruby
require "test_helper"
|
|
|
|
class Promoter::PayoutsControllerTest < ActionDispatch::IntegrationTest
|
|
test "should get index" do
|
|
get promoter_payouts_index_url
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get show" do
|
|
get promoter_payouts_show_url
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get create" do
|
|
get promoter_payouts_create_url
|
|
assert_response :success
|
|
end
|
|
end
|