@@ -48,7 +48,6 @@ public function setUp()
4848
4949 /**
5050 * @test
51- * @group laravel-5.2
5251 */
5352 public function it_should_get_the_request ()
5453 {
@@ -57,7 +56,6 @@ public function it_should_get_the_request()
5756
5857 /**
5958 * @test
60- * @group laravel-5.2
6159 */
6260 public function it_should_get_the_authenticated_user_if_a_valid_token_is_provided ()
6361 {
@@ -92,7 +90,6 @@ public function it_should_get_the_authenticated_user_if_a_valid_token_is_provide
9290
9391 /**
9492 * @test
95- * @group laravel-5.2
9693 */
9794 public function it_should_get_the_authenticated_user_if_a_valid_token_is_provided_and_not_throw_an_exception ()
9895 {
@@ -124,7 +121,6 @@ public function it_should_get_the_authenticated_user_if_a_valid_token_is_provide
124121
125122 /**
126123 * @test
127- * @group laravel-5.2
128124 */
129125 public function it_should_return_null_if_an_invalid_token_is_provided ()
130126 {
@@ -140,7 +136,6 @@ public function it_should_return_null_if_an_invalid_token_is_provided()
140136
141137 /**
142138 * @test
143- * @group laravel-5.2
144139 */
145140 public function it_should_return_null_if_no_token_is_provided ()
146141 {
@@ -156,7 +151,6 @@ public function it_should_return_null_if_no_token_is_provided()
156151
157152 /**
158153 * @test
159- * @group laravel-5.2
160154 * @expectedException \Tymon\JWTAuth\Exceptions\UserNotDefinedException
161155 * @expectedExceptionMessage An error occurred
162156 */
@@ -174,7 +168,6 @@ public function it_should_throw_an_exception_if_an_invalid_token_is_provided()
174168
175169 /**
176170 * @test
177- * @group laravel-5.2
178171 * @expectedException \Tymon\JWTAuth\Exceptions\UserNotDefinedException
179172 * @expectedExceptionMessage An error occurred
180173 */
@@ -192,7 +185,6 @@ public function it_should_throw_an_exception_if_no_token_is_provided()
192185
193186 /**
194187 * @test
195- * @group laravel-5.2
196188 */
197189 public function it_should_return_a_token_if_credentials_are_ok_and_user_is_found ()
198190 {
@@ -232,7 +224,6 @@ public function it_should_return_a_token_if_credentials_are_ok_and_user_is_found
232224
233225 /**
234226 * @test
235- * @group laravel-5.2
236227 */
237228 public function it_should_return_true_if_credentials_are_ok_and_user_is_found_when_choosing_not_to_login ()
238229 {
@@ -255,7 +246,6 @@ public function it_should_return_true_if_credentials_are_ok_and_user_is_found_wh
255246
256247 /**
257248 * @test
258- * @group laravel-5.2
259249 */
260250 public function it_should_return_false_if_credentials_are_invalid ()
261251 {
@@ -277,7 +267,6 @@ public function it_should_return_false_if_credentials_are_invalid()
277267
278268 /**
279269 * @test
280- * @group laravel-5.2
281270 */
282271 public function it_should_magically_call_the_jwt_instance ()
283272 {
@@ -287,7 +276,6 @@ public function it_should_magically_call_the_jwt_instance()
287276
288277 /**
289278 * @test
290- * @group laravel-5.2
291279 */
292280 public function it_should_logout_the_user_by_invalidating_the_token ()
293281 {
@@ -302,7 +290,6 @@ public function it_should_logout_the_user_by_invalidating_the_token()
302290
303291 /**
304292 * @test
305- * @group laravel-5.2
306293 */
307294 public function it_should_refresh_the_token ()
308295 {
@@ -315,7 +302,6 @@ public function it_should_refresh_the_token()
315302
316303 /**
317304 * @test
318- * @group laravel-5.2
319305 */
320306 public function it_should_invalidate_the_token ()
321307 {
@@ -328,7 +314,6 @@ public function it_should_invalidate_the_token()
328314
329315 /**
330316 * @test
331- * @group laravel-5.2
332317 * @expectedException \Tymon\JWTAuth\Exceptions\JWTException
333318 * @expectedExceptionMessage Token could not be parsed from the request.
334319 */
@@ -343,7 +328,6 @@ public function it_should_throw_an_exception_if_there_is_no_token_present_when_r
343328
344329 /**
345330 * @test
346- * @group laravel-5.2
347331 */
348332 public function it_should_generate_a_token_by_id ()
349333 {
@@ -364,7 +348,6 @@ public function it_should_generate_a_token_by_id()
364348
365349 /**
366350 * @test
367- * @group laravel-5.2
368351 */
369352 public function it_should_not_generate_a_token_by_id ()
370353 {
@@ -378,7 +361,6 @@ public function it_should_not_generate_a_token_by_id()
378361
379362 /**
380363 * @test
381- * @group laravel-5.2
382364 */
383365 public function it_should_authenticate_the_user_by_credentials_and_return_true_if_valid ()
384366 {
@@ -400,7 +382,6 @@ public function it_should_authenticate_the_user_by_credentials_and_return_true_i
400382
401383 /**
402384 * @test
403- * @group laravel-5.2
404385 */
405386 public function it_should_attempt_to_authenticate_the_user_by_credentials_and_return_false_if_invalid ()
406387 {
@@ -422,7 +403,6 @@ public function it_should_attempt_to_authenticate_the_user_by_credentials_and_re
422403
423404 /**
424405 * @test
425- * @group laravel-5.2
426406 */
427407 public function it_should_authenticate_the_user_by_id_and_return_boolean ()
428408 {
@@ -439,7 +419,6 @@ public function it_should_authenticate_the_user_by_id_and_return_boolean()
439419
440420 /**
441421 * @test
442- * @group laravel-5.2
443422 */
444423 public function it_should_not_authenticate_the_user_by_id_and_return_false ()
445424 {
@@ -454,7 +433,6 @@ public function it_should_not_authenticate_the_user_by_id_and_return_false()
454433
455434 /**
456435 * @test
457- * @group laravel-5.2
458436 */
459437 public function it_should_create_a_token_from_a_user_object ()
460438 {
@@ -477,7 +455,6 @@ public function it_should_create_a_token_from_a_user_object()
477455
478456 /**
479457 * @test
480- * @group laravel-5.2
481458 */
482459 public function it_should_get_the_payload ()
483460 {
@@ -489,7 +466,6 @@ public function it_should_get_the_payload()
489466
490467 /**
491468 * @test
492- * @group laravel-5.2
493469 */
494470 public function it_should_be_macroable ()
495471 {
0 commit comments