Chad Granum
Chad Granum
https://metacpan.org/pod/Paws::DynamoDB::BatchGetItemOutput#UnprocessedKeys-=%3E-Paws::DynamoDB::BatchGetRequestMap > A map of tables and their respective keys that were not processed with the current response. The UnprocessedKeys value is in the same form as RequestItems, so the...
$inst = mock {package => 'foo2-baz'}; `Package declaration must match filename at line 175, column 19. Correct the filename or package statement.` Line 175: ` $inst = mock {package =>...
magic_vars.t (reduced to minimal case) ```perl use Test2::V0; $\ = '|'; is($\, '|', 'set $\\'); done_testing ``` Result: ``` exodist@abydos main $ cover --delete; HARNESS_PERL_SWITCHES=-MDevel::Cover prove magic_vars.t; cover Deleting database...
In order to support concurrency, I suggest we drop the requirement that tests appear in order. As long as all test numbers between 1 and the plan are encountered, and...
The new TAP should have explicit concurrency support, that is where TAP can be generated via multiple threads. Note: For most things there is no guarantee of atomic writes, but...
https://github.com/Test-More/test-more/issues/942 Pretty sure in our discussions we decided the Test2 format would be supported formally by TAP14. I have not verified the claims in this ticket yet.
Not fully sure what happened. I have been using trackperlvars.vim for a couple years now without problem. Yesterday I did a system update, I am guessing it updated vim (I...
If you write a test method like this: ``` sub my_test(2) { ok(1); return "I will write the second test later" } ``` then Test::Class will call $Test::Builder->skip("I will write...