feat: add promoter payouts controller and routes
This commit is contained in:
18
test/controllers/promoter/payouts_controller_test.rb
Normal file
18
test/controllers/promoter/payouts_controller_test.rb
Normal file
@@ -0,0 +1,18 @@
|
||||
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
|
||||
Reference in New Issue
Block a user