Files
ticketbeast/tests/Unit/Billing/StripePaymentGatewayTest.php
2017-05-02 15:42:41 -04:00

20 lines
347 B
PHP

<?php
namespace Tests\Unit\Billing;
use Tests\TestCase;
use App\Billing\StripePaymentGateway;
/**
* @group integration
*/
class StripePaymentGatewayTest extends TestCase
{
use PaymentGatewayContractTests;
protected function getPaymentGateway()
{
return new StripePaymentGateway(config('services.stripe.secret'));
}
}