@@ -48,7 +48,6 @@ public function setUp()
48
48
49
49
/**
50
50
* @test
51
- * @group laravel-5.2
52
51
*/
53
52
public function it_should_get_the_request ()
54
53
{
@@ -57,7 +56,6 @@ public function it_should_get_the_request()
57
56
58
57
/**
59
58
* @test
60
- * @group laravel-5.2
61
59
*/
62
60
public function it_should_get_the_authenticated_user_if_a_valid_token_is_provided ()
63
61
{
@@ -92,7 +90,6 @@ public function it_should_get_the_authenticated_user_if_a_valid_token_is_provide
92
90
93
91
/**
94
92
* @test
95
- * @group laravel-5.2
96
93
*/
97
94
public function it_should_get_the_authenticated_user_if_a_valid_token_is_provided_and_not_throw_an_exception ()
98
95
{
@@ -124,7 +121,6 @@ public function it_should_get_the_authenticated_user_if_a_valid_token_is_provide
124
121
125
122
/**
126
123
* @test
127
- * @group laravel-5.2
128
124
*/
129
125
public function it_should_return_null_if_an_invalid_token_is_provided ()
130
126
{
@@ -140,7 +136,6 @@ public function it_should_return_null_if_an_invalid_token_is_provided()
140
136
141
137
/**
142
138
* @test
143
- * @group laravel-5.2
144
139
*/
145
140
public function it_should_return_null_if_no_token_is_provided ()
146
141
{
@@ -156,7 +151,6 @@ public function it_should_return_null_if_no_token_is_provided()
156
151
157
152
/**
158
153
* @test
159
- * @group laravel-5.2
160
154
* @expectedException \Tymon\JWTAuth\Exceptions\UserNotDefinedException
161
155
* @expectedExceptionMessage An error occurred
162
156
*/
@@ -174,7 +168,6 @@ public function it_should_throw_an_exception_if_an_invalid_token_is_provided()
174
168
175
169
/**
176
170
* @test
177
- * @group laravel-5.2
178
171
* @expectedException \Tymon\JWTAuth\Exceptions\UserNotDefinedException
179
172
* @expectedExceptionMessage An error occurred
180
173
*/
@@ -192,7 +185,6 @@ public function it_should_throw_an_exception_if_no_token_is_provided()
192
185
193
186
/**
194
187
* @test
195
- * @group laravel-5.2
196
188
*/
197
189
public function it_should_return_a_token_if_credentials_are_ok_and_user_is_found ()
198
190
{
@@ -232,7 +224,6 @@ public function it_should_return_a_token_if_credentials_are_ok_and_user_is_found
232
224
233
225
/**
234
226
* @test
235
- * @group laravel-5.2
236
227
*/
237
228
public function it_should_return_true_if_credentials_are_ok_and_user_is_found_when_choosing_not_to_login ()
238
229
{
@@ -255,7 +246,6 @@ public function it_should_return_true_if_credentials_are_ok_and_user_is_found_wh
255
246
256
247
/**
257
248
* @test
258
- * @group laravel-5.2
259
249
*/
260
250
public function it_should_return_false_if_credentials_are_invalid ()
261
251
{
@@ -277,7 +267,6 @@ public function it_should_return_false_if_credentials_are_invalid()
277
267
278
268
/**
279
269
* @test
280
- * @group laravel-5.2
281
270
*/
282
271
public function it_should_magically_call_the_jwt_instance ()
283
272
{
@@ -287,7 +276,6 @@ public function it_should_magically_call_the_jwt_instance()
287
276
288
277
/**
289
278
* @test
290
- * @group laravel-5.2
291
279
*/
292
280
public function it_should_logout_the_user_by_invalidating_the_token ()
293
281
{
@@ -302,7 +290,6 @@ public function it_should_logout_the_user_by_invalidating_the_token()
302
290
303
291
/**
304
292
* @test
305
- * @group laravel-5.2
306
293
*/
307
294
public function it_should_refresh_the_token ()
308
295
{
@@ -315,7 +302,6 @@ public function it_should_refresh_the_token()
315
302
316
303
/**
317
304
* @test
318
- * @group laravel-5.2
319
305
*/
320
306
public function it_should_invalidate_the_token ()
321
307
{
@@ -328,7 +314,6 @@ public function it_should_invalidate_the_token()
328
314
329
315
/**
330
316
* @test
331
- * @group laravel-5.2
332
317
* @expectedException \Tymon\JWTAuth\Exceptions\JWTException
333
318
* @expectedExceptionMessage Token could not be parsed from the request.
334
319
*/
@@ -343,7 +328,6 @@ public function it_should_throw_an_exception_if_there_is_no_token_present_when_r
343
328
344
329
/**
345
330
* @test
346
- * @group laravel-5.2
347
331
*/
348
332
public function it_should_generate_a_token_by_id ()
349
333
{
@@ -364,7 +348,6 @@ public function it_should_generate_a_token_by_id()
364
348
365
349
/**
366
350
* @test
367
- * @group laravel-5.2
368
351
*/
369
352
public function it_should_not_generate_a_token_by_id ()
370
353
{
@@ -378,7 +361,6 @@ public function it_should_not_generate_a_token_by_id()
378
361
379
362
/**
380
363
* @test
381
- * @group laravel-5.2
382
364
*/
383
365
public function it_should_authenticate_the_user_by_credentials_and_return_true_if_valid ()
384
366
{
@@ -400,7 +382,6 @@ public function it_should_authenticate_the_user_by_credentials_and_return_true_i
400
382
401
383
/**
402
384
* @test
403
- * @group laravel-5.2
404
385
*/
405
386
public function it_should_attempt_to_authenticate_the_user_by_credentials_and_return_false_if_invalid ()
406
387
{
@@ -422,7 +403,6 @@ public function it_should_attempt_to_authenticate_the_user_by_credentials_and_re
422
403
423
404
/**
424
405
* @test
425
- * @group laravel-5.2
426
406
*/
427
407
public function it_should_authenticate_the_user_by_id_and_return_boolean ()
428
408
{
@@ -439,7 +419,6 @@ public function it_should_authenticate_the_user_by_id_and_return_boolean()
439
419
440
420
/**
441
421
* @test
442
- * @group laravel-5.2
443
422
*/
444
423
public function it_should_not_authenticate_the_user_by_id_and_return_false ()
445
424
{
@@ -454,7 +433,6 @@ public function it_should_not_authenticate_the_user_by_id_and_return_false()
454
433
455
434
/**
456
435
* @test
457
- * @group laravel-5.2
458
436
*/
459
437
public function it_should_create_a_token_from_a_user_object ()
460
438
{
@@ -477,7 +455,6 @@ public function it_should_create_a_token_from_a_user_object()
477
455
478
456
/**
479
457
* @test
480
- * @group laravel-5.2
481
458
*/
482
459
public function it_should_get_the_payload ()
483
460
{
@@ -489,7 +466,6 @@ public function it_should_get_the_payload()
489
466
490
467
/**
491
468
* @test
492
- * @group laravel-5.2
493
469
*/
494
470
public function it_should_be_macroable ()
495
471
{
0 commit comments