mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
Update test case names
This commit is contained in:
parent
28ced46b9d
commit
b396f2bed3
|
@ -11,9 +11,9 @@ use Illuminate\Notifications\AnonymousNotifiable;
|
|||
use Illuminate\Support\Facades\Notification;
|
||||
use Tests\TestCase;
|
||||
|
||||
class AssetCheckoutSlackNotificationTest extends TestCase
|
||||
class AssetCheckoutWebhookNotificationTest extends TestCase
|
||||
{
|
||||
public function testNotificationSentToSlackWhenAssetCheckedOutToUserAndSlackNotificationEnabled()
|
||||
public function testNotificationSentToWebhookWhenAssetCheckedOutToUserAndWebhookNotificationEnabled()
|
||||
{
|
||||
Notification::fake();
|
||||
|
||||
|
@ -35,7 +35,7 @@ class AssetCheckoutSlackNotificationTest extends TestCase
|
|||
);
|
||||
}
|
||||
|
||||
public function testNotificationSentToSlackWhenAssetCheckedOutToAssetAndSlackNotificationEnabled()
|
||||
public function testNotificationSentToWebhookWhenAssetCheckedOutToAssetAndWebhookNotificationEnabled()
|
||||
{
|
||||
Notification::fake();
|
||||
|
||||
|
@ -57,7 +57,7 @@ class AssetCheckoutSlackNotificationTest extends TestCase
|
|||
);
|
||||
}
|
||||
|
||||
public function testDoesNotSendNotificationViaSlackIfWebHookEndpointIsNotSetWhenCheckingOutAssetToAsset()
|
||||
public function testDoesNotSendNotificationViaWebhookIfWebHookEndpointIsNotSetWhenCheckingOutAssetToAsset()
|
||||
{
|
||||
Notification::fake();
|
||||
|
||||
|
@ -72,7 +72,7 @@ class AssetCheckoutSlackNotificationTest extends TestCase
|
|||
);
|
||||
}
|
||||
|
||||
public function testNotificationSentToSlackWhenAssetCheckedOutToLocationAndSlackNotificationEnabled()
|
||||
public function testNotificationSentToWebhookWhenAssetCheckedOutToLocationAndWebhookNotificationEnabled()
|
||||
{
|
||||
Notification::fake();
|
||||
|
||||
|
@ -94,7 +94,7 @@ class AssetCheckoutSlackNotificationTest extends TestCase
|
|||
);
|
||||
}
|
||||
|
||||
public function testDoesNotSendNotificationViaSlackIfWebHookEndpointIsNotSetWhenCheckingOutAssetToLocation()
|
||||
public function testDoesNotSendNotificationViaWebhookIfWebHookEndpointIsNotSetWhenCheckingOutAssetToLocation()
|
||||
{
|
||||
Notification::fake();
|
||||
|
Loading…
Reference in a new issue