File tree 3 files changed +11
-9
lines changed
tests/lib/Integration/Console
3 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 3
3
All notable changes to this project will be documented in this file. This project adheres to
4
4
[ Semantic Versioning] ( http://semver.org/ ) and [ this changelog format] ( http://keepachangelog.com/ ) .
5
5
6
+ ## Unreleased
7
+
8
+ ### Fixed
9
+ - [ #3 ] ( https://github.com/laravel-json-api/laravel/issues/3 )
10
+ Example server registration in the published configuration file prevented developer from creating
11
+ a ` v1 ` server after adding this package to their Laravel application.
12
+
6
13
## [ 1.0.0-alpha.1] - 2021-01-25
7
14
8
15
Initial release.
Original file line number Diff line number Diff line change 27
27
| class name of the server class.
28
28
*/
29
29
'servers ' => [
30
- 'v1 ' => \App \JsonApi \V1 \Server::class,
30
+ // 'v1' => \App\JsonApi\V1\Server::class,
31
31
],
32
32
];
Original file line number Diff line number Diff line change @@ -52,19 +52,14 @@ protected function tearDown(): void
52
52
53
53
public function test (): void
54
54
{
55
- config ()->set ('jsonapi ' , [
56
- 'namespace ' => 'JsonApi ' ,
57
- 'servers ' => [
58
- 'v1 ' => Server::class,
59
- ],
60
- ]);
55
+ config ()->set ('jsonapi ' , require __DIR__ . '/../../../../config/jsonapi.php ' );
61
56
62
57
$ result = $ this ->artisan ('jsonapi:server ' , [
63
- 'name ' => 'v2 '
58
+ 'name ' => 'v1 '
64
59
]);
65
60
66
61
$ this ->assertSame (0 , $ result );
67
- $ this ->assertServerCreated ('JsonApi ' , 'V2 ' , '/api/v2 ' );
62
+ $ this ->assertServerCreated ('JsonApi ' , 'V1 ' , '/api/v1 ' );
68
63
}
69
64
70
65
public function testWithUri (): void
You can’t perform that action at this time.
0 commit comments