1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 16:24:04 +00:00

Refactor tests to use pest() helper

This commit is contained in:
Samuel Štancl 2022-07-23 01:16:50 +02:00
parent 05f2a828a1
commit f9c9d8615f
26 changed files with 128 additions and 127 deletions

View file

@ -34,7 +34,7 @@ test('tenant can be identified by subdomain', function () {
expect(tenancy()->initialized)->toBeFalse();
$this
pest()
->get('http://foo.localhost/foo/abc/xyz')
->assertSee('abc + xyz');
@ -47,13 +47,13 @@ test('onfail logic can be customized', function () {
return 'foo';
};
$this
pest()
->get('http://foo.localhost/foo/abc/xyz')
->assertSee('foo');
});
test('localhost is not a valid subdomain', function () {
$this->expectException(NotASubdomainException::class);
pest()->expectException(NotASubdomainException::class);
$this
->withoutExceptionHandling()
@ -61,7 +61,7 @@ test('localhost is not a valid subdomain', function () {
});
test('ip address is not a valid subdomain', function () {
$this->expectException(NotASubdomainException::class);
pest()->expectException(NotASubdomainException::class);
$this
->withoutExceptionHandling()
@ -99,7 +99,7 @@ test('we cant use a subdomain that doesnt belong to our central domains', functi
'domain' => 'foo',
]);
$this->expectException(NotASubdomainException::class);
pest()->expectException(NotASubdomainException::class);
$this
->withoutExceptionHandling()
@ -119,7 +119,7 @@ test('central domain is not a subdomain', function () {
'domain' => 'acme',
]);
$this->expectException(NotASubdomainException::class);
pest()->expectException(NotASubdomainException::class);
$this
->withoutExceptionHandling()