forked from Test-More/test-more
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changes
1867 lines (1370 loc) · 68.3 KB
/
Changes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{{$NEXT}}
1.302066 2016-11-08 07:58:39-08:00 America/Los_Angeles (TRIAL RELEASE)
- Handle cases where SysV IPC can be available but not enabled
- Import 'context' into Test2::IPC, it is used by 'cull'
- Propogate warnings settings to use_ok (#736)
1.302065 2016-10-30 11:54:37-07:00 America/Los_Angeles (TRIAL RELEASE)
- Set the TEST_ACTIVE env var to true
- Set the TEST2_ACTIVE env var to true
- Fix the oldest bug still in the bug list (#6)
This fixes cmp_ok output is some confusing cases
- Update travis config
- Add missing author deps
- Fix handling of negative pid's on windows
- Add can() to Test::Tester::Delegate (despite deprecation)
- Fix some minor test issues
1.302064 2016-10-24 21:03:24-07:00 America/Los_Angeles (TRIAL RELEASE)
- Repo management improvements
- Better handling of info vs diag in ->send_event
- Fix test that used 'parent'
- Better handling of non-bumping failures (#728)
1.302063 2016-10-23 21:31:20-07:00 America/Los_Angeles (TRIAL RELEASE)
- Fix double release when 'throw' is used in context_do()
1.302062 2016-10-20 06:16:08-07:00 America/Los_Angeles
- No changes from last trial
1.302061 2016-09-30 14:49:19-07:00 America/Los_Angeles (TRIAL RELEASE)
- Removed a warning when using a non-TAP formatter with Test::Builder
about the formatter not "no_header" and "no_diag". This happened even if
the alternative formatter class implemented these attributes.
- When finalize is called on a formatter, it now receives one more
argument, a boolean indicating whether or not the call is for a subtest
or not.
1.302060 2016-09-25 12:46:46-07:00 America/Los_Angeles (TRIAL RELEASE)
- Formatters now have terminate() and finalize() methods. These are called
when there is a skip_all or bail event (terminate) or when a test suite
is exiting normally (finalize). This allows formatters to finalize their
output, which is important for any sort of document-oriented format (as
opposed to a stream format like TAP). (#723)
1.302059 2016-09-25 12:32:21-07:00 America/Los_Angeles
- No changes from last trial
1.302058 2016-09-21 10:46:13-07:00 America/Los_Angeles (TRIAL RELEASE)
- Mask warning when comparing $@ in Test2::API::Context
1.302057 2016-09-18 12:12:18-07:00 America/Los_Angeles (TRIAL RELEASE)
- Doc fixes
- Win32 color support in Test::Builder::Tester
- Support v-strings in is_deeply
- A streamed subtest run inside a buffered subtest will be automatically
converted to a buffered subtest. Otherwise the output from inside the
subtest is lost entirely. (#721)
1.302056 2016-09-12 09:03:49-07:00 America/Los_Angeles
- Minor typo fix
- No logic chnges since last trial
1.302055 2016-08-30 12:13:32-07:00 America/Los_Angeles (TRIAL RELEASE)
- Fix special case of ok line ending in \
- Improve a test that captures STDERR/STDOUT (Thanks HAARG)
1.302054 2016-08-20 16:21:44-07:00 America/Los_Angeles (TRIAL RELEASE)
- Allow '#' and '\n' in ok names
1.302053 2016-08-17 21:22:55-07:00 America/Los_Angeles (TRIAL RELEASE)
- Fix skip_all in require in intercept (#696)
- Documentation of what is better in Test2 (#663)
- Document Test::Builder::Tester plan limitations
- Document limitations in is_deeply (#595)
- Better documentation of done_testing purpose (#151)
- Make ctx->send_event detect termination events (#707)
1.302052 2016-08-13 14:34:07-07:00 America/Los_Angeles
- No Changes from last trial
1.302051 2016-08-11 20:26:22-07:00 America/Los_Angeles (TRIAL RELEASE)
- Fix setting hub when getting context
1.302050 2016-08-10 22:12:19-07:00 America/Los_Angeles (TRIAL RELEASE)
- Add contact info to main doc and readme
1.302049 2016-07-28 07:03:31-07:00 America/Los_Angeles
- No Changes from last trial
1.302048 2016-07-27 07:42:14-07:00 America/Los_Angeles (TRIAL RELEASE)
- Add 'active' attribute to hub
1.302047 2016-07-22 22:36:29-07:00 America/Los_Angeles
- No Changes from last trial
1.302046 2016-07-19 06:58:43-07:00 America/Los_Angeles (TRIAL RELEASE)
- Restore traditional note/diag return values (#694)
1.302045 2016-07-18 09:05:15-07:00 America/Los_Angeles
- No changes from last TRIAL release
1.302044 2016-07-13 17:56:20-07:00 America/Los_Angeles (TRIAL RELEASE)
- Fix test that segv'd on older perls
1.302043 2016-07-12 09:37:31-07:00 America/Los_Angeles (TRIAL RELEASE)
- Fix TODO in mixed T2/TB subtests
1.302042 2016-07-11 20:30:35-07:00 America/Los_Angeles (TRIAL RELEASE)
- Fix IPC event ordering bug
1.302041 2016-07-09 17:01:45-07:00 America/Los_Angeles (TRIAL RELEASE)
- Work around IPC bug on windows
1.302040 2016-07-09 16:55:00-07:00 America/Los_Angeles
- No changes from last trial
1.302039 2016-07-07 22:01:02-07:00 America/Los_Angeles (TRIAL RELEASE)
- Add Info event for better diagnostics
1.302038 2016-07-05 07:00:18-07:00 America/Los_Angeles (TRIAL RELEASE)
- Fix broken MANIFEST.SKIP entries (#689)
1.302037 2016-07-04 10:09:00-07:00 America/Los_Angeles
- No changes from trial
1.302036 2016-07-03 11:52:45-07:00 America/Los_Angeles (TRIAL RELEASE)
- Restore PerlIO layer cloning on STDERR and STDOUT
1.302035 2016-06-27 08:55:55-07:00 America/Los_Angeles
- No changes since TRIAL release
1.302034 2016-06-25 13:51:00-07:00 America/Los_Angeles (TRIAL RELEASE)
- Fix some breakage info (Thanks Dolman!)
- POD Fixes (Thanks cpansprout!)
1.302033 2016-06-24 05:56:54-07:00 America/Los_Angeles
- No changes from last trial release
1.302032 2016-06-22 11:30:46-07:00 America/Los_Angeles (TRIAL RELEASE)
- Fix nested TODO handling of Diags (#684)
1.302031 2016-06-21 09:51:27-07:00 America/Los_Angeles
- Remove carp from dep list #682
1.302030 2016-06-18 19:02:55-07:00 America/Los_Angeles
- No changes from last DEV release
1.302029 2016-06-17 06:56:54-07:00 America/Los_Angeles (TRIAL RELEASE)
- Properly skip thread test when threads are broken
1.302028 2016-06-16 19:21:58-07:00 America/Los_Angeles (TRIAL RELEASE)
- Add 'inherit_trace' param to run_subtest
1.302027 2016-06-15 09:42:32-07:00 America/Los_Angeles (TRIAL RELEASE)
- use pre_filter instead of filter for TODO in Test::Builder (Fix $683)
- Fix typos in transitions doc (#681)
1.302026 2016-06-07 07:53:30-07:00 America/Los_Angeles
- No Changes from 1.302025-TRIAL
1.302025 2016-06-06 22:38:12-07:00 America/Los_Angeles (TRIAL RELEASE)
- Make sure enabling culling/shm sets pid and tid (Fix #679)
1.302024 2016-06-02 20:27:35-07:00 America/Los_Angeles (TRIAL RELEASE)
- Add Generic event type
1.302023 2016-06-02 08:09:54-07:00 America/Los_Angeles (TRIAL RELEASE)
- Do not fail if Test2::API::Breakage cannot load (rare 5.10.0 issue)
- Potential fix for t/Legacy/Regression/637.t
- Make t/Legacy/Regression/637.t AUTHOR_TESTING for now
1.302022 2016-05-28 17:53:11-07:00 America/Los_Angeles
- Improve thread checks to better detect broken 5.10 builds
- Use thread checks to skip/run t/Legacy/Regression/637.t
1.302021 2016-05-20 21:47:17-07:00 America/Los_Angeles (TRIAL RELEASE)
- Files.t should warn, not die, if it cannot remove its temp dir.
- VMS fixes for Files.t and IPC system
1.302020 2016-05-18 11:54:15-07:00 America/Los_Angeles (TRIAL RELEASE)
- Many micro-opts from Graham Knop (haarg)
- Spelling fixes and tests from Karen Etheridge (ether)
- Fix leaky File.t file so that tmp doesn't fill up
- Move some modules out of the known broken list in xt tests
- Add Test2 based tools to downstream testing
- Change when PID/TID are stashed (for forkprove)
1.302019 2016-05-18 08:16:39-07:00 America/Los_Angeles
- POD Spelling fixes
1.302018 2016-05-14 09:08:05-07:00 America/Los_Angeles (TRIAL RELEASE)
- Handle Test::Builder::Exception properly
- Silence noisy STDERR in test suite
1.302017 2016-05-13 08:09:58-07:00 America/Los_Angeles (TRIAL RELEASE)
- Fix util.t win32 bug
1.302016 2016-05-12 19:43:38-07:00 America/Los_Angeles (TRIAL RELEASE)
- Block signals in critical IPC section (Fix #661 and #668)
- Merge Examples and examples into one dir (#660)
- Documentation and typo fixes
- Make Test2::Util::get_tid have a consistent prototype (#665)
- Make TB->no_plan a no-op if a plan is set
1.302015 2016-05-09 07:46:54-07:00 America/Los_Angeles
- Add Test::Alien to breakage info
- Add Device::Chip to breakage info
- Add subtest outdent to transition.pod
1.302014_010 2016-05-03 12:09:14-07:00 America/Los_Angeles (TRIAL RELEASE)
- RC10
- Update x-breaks, Breakage.pm, and Transition.POD
- Fix shared memory leak
- Fix typos and clarify docs.
1.302014_009 2016-04-27 10:05:18-07:00 America/Los_Angeles (TRIAL RELEASE)
- RC9
- No logic changes
- Update x-breaks stuff
- Update email addresses
1.302014_008 2016-04-26 11:40:40-07:00 America/Los_Angeles (TRIAL RELEASE)
- RC8
- Fix bug when using defined, but empty (or space) as a test name in a subtest
- Better notificatons for late Test::Builder load
- Recommend Test2::Transition if you have outdated modules
- Document Test::Builder::TodoDiag and Test::Builder::Formatter
1.302014_007 2016-04-24 13:09:03-07:00 America/Los_Angeles (TRIAL RELEASE)
- RC7
- Fix #642 - Persistent environments need to have ENDING flag cleared
1.302014_006 2016-04-24 02:31:13-07:00 America/Los_Angeles (TRIAL RELEASE)
- RC6
- Remove reduntant and problematic parts of 00-report.t
- No changes to actual code, just a test that provides diags
1.302014_005 2016-04-24 01:55:55-07:00 America/Los_Angeles (TRIAL RELEASE)
- RC5
- Prevent the breakage reporter from being a test failure
- No changes to actual code, just a test that provides diags
1.302014_004 2016-04-23 16:21:34-07:00 America/Los_Angeles (TRIAL RELEASE)
- RC4
- Update breakage info
- Fix IPC files driver to use the most significant data in the shm (needs test)
1.302014_003 2016-04-23 03:20:36-07:00 America/Los_Angeles (TRIAL RELEASE)
- RC3
- Localize $@ and $! when loading Data::Dumper in explain()
1.302014_002 2016-04-22 14:54:51-07:00 America/Los_Angeles (TRIAL RELEASE)
- RC2
- Restore X-Breaks meta info
- Keep dist.ini in the tarball
1.302014_001 2016-04-22 04:01:50-07:00 America/Los_Angeles (TRIAL RELEASE)
- RC1
- Merge Test2 into the Test-Simple dist
- Remove experimental status
- Update copyright dates
- Better error messages when using Carp in Hashbase init()
- Document 2 methods on Events
- Fix Test2 #17 (typo fix in docs)
- Report version mismatches between Test::Builder and Test2
- Update transition docs
- Breakage library and warnings
*****************************************************************************
* *
* BELOW THIS POINT ARE THE SEPERATE CHANGELOGS FOR Test-Simple, Test2, AND *
* Test-Stream. *
* *
*****************************************************************************
Test-Simple 1.302013_019 2016-04-13 20:23:18-07:00 America/Los_Angeles (TRIAL RELEASE)
- Expand no_numbers support to custom formatters
Test-Simple 1.302013_018 2016-04-07 21:23:03-07:00 America/Los_Angeles (TRIAL RELEASE)
- Support Test2 using an alternative formatter
Test-Simple 1.302013_017 2016-04-05 11:13:50-07:00 America/Los_Angeles (TRIAL RELEASE)
- Support subtest identification for events
- Bump minimum Test2 version
Test-Simple 1.302013_016 2016-04-04 21:33:20-07:00 America/Los_Angeles (TRIAL RELEASE)
- Support some newer event features from Test2
- Bump minimum Test2 version
Test-Simple 1.302013_015 2016-03-29 09:24:10-07:00 America/Los_Angeles (TRIAL RELEASE)
- Bump minimum Test2 version to protect from segv
Test-Simple 1.302013_014 2016-03-08 10:00:50-08:00 America/Los_Angeles (TRIAL RELEASE)
- Skip test added in last release when threading is not avilable
Test-Simple 1.302013_013 2016-03-08 09:19:39-08:00 America/Los_Angeles (TRIAL RELEASE)
- Test::Builder->reset now resets hub's idea of root pid/tid (#637)
Test-Simple 1.302013_012 2016-01-28 20:38:16-08:00 America/Los_Angeles (TRIAL RELEASE)
- $Level effects all contexts once Test::Builder is loaded
- Requires Test2 0.000023
Test-Simple 1.302013_011 2016-01-14 21:55:28-08:00 America/Los_Angeles (TRIAL RELEASE)
- Performance enhancements
Test-Simple 1.302013_010 2016-01-12 05:57:43-08:00 America/Los_Angeles (TRIAL RELEASE)
- Changes needed for Test2 0.000018
Test-Simple 1.302013_009 2016-01-11 16:35:57-08:00 America/Los_Angeles (TRIAL RELEASE)
- Make skip work without a count w/ done_testing (#629)
- Require newer Test2 that fixes $! squashing (#628)
Test-Simple 1.302013_008 2016-01-10 13:21:02-08:00 America/Los_Angeles (TRIAL RELEASE)
- Bump minimum Test2 version requirement (to fix downstream)
Test-Simple 1.302013_007 2016-01-07 19:30:04-08:00 America/Los_Angeles (TRIAL RELEASE)
- Bump minimum Test2 version requirement
Test-Simple 1.302013_006 2016-01-06 11:21:48-08:00 America/Los_Angeles (TRIAL RELEASE)
- Update for Test2 0.000013
- Delay loading Data::Dumper
- Test2::API::test2_no_wait(1) when threads/forking are on
- Fix Test::Tester to use context
- More downstream dists for testing
Test-Simple 1.302013_005 2015-12-29 13:01:32-08:00 America/Los_Angeles (TRIAL RELEASE)
- Updates for Test2 0.000012
- Helper for Test::SharedFork
Test-Simple 1.302013_004 2015-12-28 13:12:23-08:00 America/Los_Angeles (TRIAL RELEASE)
- Fix diag/note bugs from refactor
Test-Simple 1.302013_003 2015-12-22 09:41:46-08:00 America/Los_Angeles (TRIAL RELEASE)
- Fix bug in details() structure for subtests when the parent is todo
Test-Simple 1.302013_002 2015-12-21 13:21:51-08:00 America/Los_Angeles (TRIAL RELEASE)
- Updates for Test2 0.000010
Test-Simple 1.302013_001 2015-12-21 10:07:42-08:00 America/Los_Angeles (TRIAL RELEASE)
- Switch to using Test2 under the hood
- Use Dist::Zilla for releases
- Reformat Changes file
Test-Simple 1.302012_004 2015-Nov-16 07:45:11-08:00 PST
* Fix #600 - done_testing($count)
Test-Simple 1.302012_003 2015-Oct-27 00:02:44-08:00 PST
* Fix typo that called wrong 'try'
Test-Simple 1.302012_002 2015-Oct-02 21:57:19-08:00 PST
* Add version eval to several modules (#605)
Test-Simple 1.302012_001 2015-Oct-01 15:47:39-08:00 PST
* Support for Test::Stream 1.302012
Test-Simple 1.302010_001 2015-Sep-29 21:18:38-08:00 PST
* Support for Test::Stream 1.302010
* Some upstream package names changed
* Test::Stream's interface changed, tests needed to change too.
Test-Simple 1.302007_004 2015-Jul-27 21:13:39-08:00 PST
* Work around perlbug 125702
Test-Simple 1.302007_003 2015-Jul-24 08:34:46-08:00 PST
* Remove singleton from closure
Test-Simple 1.302007_002 2015-Jul-18 17:38:26-08:00 PST
* Fix subtest + Test::Stream::Tester
Test-Simple 1.302007_001 2015-Jun-24 08:06:00-08:00 PST
* Tests no longer copy thread/fork checks
* Bump minimum Test::Stream version
Test-Simple 1.302004_001 2015-Jun-17 08:33:00-08:00 PST
* Update for newer Test-Stream with XS support
* Use 'fudge' in Test::Stream instead of doing level adjustments here
* Fix minor POD encoding issue #593
* Some performance enhancements in T::B->ok
Test-Simple 1.302003_001 2015-Jan-06 21:52:00-08:00 PST
* Convert internals to use Test-Stream
* Optimizations for performance
* Note this is a completely new branch off of legacy/master, not taken from the old stream branches
Test-Simple 1.001014 2014-Dec-28 08:31:00-08:00 PST
* Write a test to ensure this changes file gets updated
* Update changes file for 1.001013
Test-Simple 1.001013 2014-Dec-28 08:00:00-08:00 PST
* Fix a unit test that broke on some platforms with spaces in the $^X path
Test-Simple 1.001012 2014-Dec-23 07:39:00-08:00 PST
* Move test that was dropped in the wrong directory
Test-Simple 1.001011 2014-Dec-20 09:08:00-08:00 PST
* Remove POD Coverage test
Test-Simple 1.001010 2014-Dec-19 20:16:00-08:00 PST
* Fix windows test bug #491
* Integrate Test::Tester and Test::use::ok for easier downgrade from trial
Test-Simple 1.001009 2014-Nov-2 22:31:08-08:00 PST
* Fix bug in cmp_ok
Test-Simple 1.001008 2014-Oct-15 20:10:22-08:00 PST
* Updated Changes file
Test-Simple 1.001007 2014-Oct-15 16:37:11-08:00 PST
* Fix subtest name when skip_all is used
Test-Simple 1.001006 2014-Sep-2 14:39:05-08:00 PST
* Reverted change that is now part of alpha branch
Test-Simple 1.001005 2014-Sep-2 19:47:19-08:00 JST
* Changed install path for perl 5.12 or higher.
Test-Simple 1.001004_003 2014-May-17 13:43-08:00 PST
* Another Minor doc fix to solve test bug
* Fix #399, conflict with strawberry-portable
Test-Simple 1.001004_002 2014-May-17 13:43-08:00 PST
* Minor doc fix to solve test bug
Test-Simple 1.001004_001 2014-May-10 08:39-08:00 PST
* Doc updates
* Subtests accept args
* Outdent subtest diag
Test-Simple 1.001003 2014-Mar-21 21:12-08:00 PST
* Doc updates for maintainer change
Test-Simple 1.001002 2013-Nov-4 15:13-08:00 EST
* no changes since 0.99
Test-Simple 1.001001_001 2013-Oct-30 20:47-08:00 EDT
* no code changes, just a new version number with more room to grow
Test-Simple 0.99 2013-Oct-29 13:21:03-08:00 EDT
* restore ability to use regex with test_err and test_out
(Zefram) [rt.cpan.org #89655] [github #389] [github #387]
Test-Simple 0.99 2013-Oct-12 15:05-08:00 EDT
* no changes since 0.98_06
Test-Simple 0.98_06 2013-Sep-27 10:11-08:00 EDT
Bug Fixes
* Fix precedence error with (return ... and ...)
(nthykier) [github #385]
Test-Simple 0.98_05 2013-Apr-23 17:33-08:00 PDT
Doc Changes
* Add a shorter work around for the UTF-8 output problem.
(Michael G Schwern)
Bug Fixes
* Test::Builder::Tester now works with subtests.
(Michael G Schwern) [github 350]
* Fix test_fail() inside a do statement.
(nnutter) [github #369]
New Features
* A subtest will put its name at the front of its results to make
subtests easier to read. [github #290] [github #364]
(Brendan Byrd)
Feature Changes
* like() and unlike() no longer warn about undef. [github #335]
(Michael G Schwern)
Test-Simple 0.98_04 2013-Apr-14 10:54-08:00 BST
Distribution Changes
* Scalar::Util 1.13 (ships with Perl 5.8.1) is now required.
(Michael G Schwern)
Feature Changes
* The default name and diagnostics for isa_ok() and new_ok() have
changed. (Michael G Schwern)
Docs Fixes
* Added a COMPATIBILITY section so users know what major features were
added with what version of Test::More or perl. [github 343] [github 344]
(pdl)
* Fix the ok() example with grep(). ([email protected])
Bug Fixes
* A test with no plan and missing done_testing() now exits with non-zero.
[github #341] (tokuhirom)
* isa_ok() tests were broken in 5.17 because of a change in
method resolution. [github #353] (Michael G Schwern)
Test-Simple 0.98_03 2012-Jun-21 13:04-08:00 PDT
New Features
* cmp_ok() will error when used with something which is not a
comparison operator, including =, += and the like.
[github 141] (Matthew Horsfall)
Bug Fixes
* use_ok() was calling class->import without quoting which could
cause problems if "class" is also a function.
Doc Fixes
* use_ok() has been discouraged and de-emphasized as a general
replacement for `use` in tests. [github #288]
* $thing is now $this in the docs to avoid confusing users of
other languages. [Karen Etheridge]
Incompatible Changes With Previous Alphas (0.98_01)
* use_ok() will no longer apply lexical pragams. The incompatibilities
and extra complexity is not worth the marginal use.
[github #287]
Test-Simple 0.98_02 2011-Nov-24 01:13-08:00 PST
Bug Fixes
* use_ok() in 0.98_01 was leaking pragmas from inside Test::More.
This looked like Test::More was forcing strict. [rt.cpan.org 67538]
(Father Chrysostomos)
Test-Simple 0.98_01 2011-Nov-8 17:07-08:00 PST
Bug Fixes
* BAIL_OUT works inside a subtest. (Larry Leszczynski) [github #138]
* subtests now work with threads turned on. [github #145]
Feature Changes
* use_ok() will now apply lexical effects. [rt.cpan.org 67538]
(Father Chrysostomos)
Misc
* Test::More, Test::Simple and Test::Builder::Module now require
a minimum version of Test::Builder. This avoids Test::More and
Test::Builder from getting out of sync. [github #89]
Test-Simple 0.98 2011-Fev-23 14:38:02 +1100
Bug Fixes
* subtest() should not fail if $? is non-zero. (Aaron Crane)
Docs
* The behavior of is() and undef has been documented. (Pedro Melo)
Test-Simple 0.97_01 2010-Aug-27 22:50-08:00 PDT
Test Fixes
* Adapted the tests for the new Perl 5.14 regex stringification.
(Karl Williamson) [github 44]
Doc Fixes
* Document how to test "use Foo ()". (Todd Rinaldo) [github 41]
Feature Changes
* subtest() no longer has a prototype. It was just getting in the way.
[rt.cpan.org 54239]
* The filehandles used by default will now inherit any filehandle
disciplines from STDOUT and STDERR IF AND ONLY IF they were applied
before Test::Builder is loaded. More later. [rt.cpan.org 46542]
Test-Simple 0.96 2010-Aug-10 21:13-08:00 PDT
Bug Fixes
* You can call done_testing() again after reset() [googlecode 59]
Other
* Bug tracker moved to github
Test-Simple 0.95_02 2010-May-19 15:46-08:00 PDT
Bug Fixes
* Correct various typos and spelling errors (Nick Cleaton)
* Fix alignment of indented multi-line diagnostics from subtests
(Nick Cleaton)
* Fix incorrect operation when subtest called from within a todo block
(Nick Cleaton)
* Avoid spurious output after a fork within a subtest
(Nick Cleaton)
Test-Simple 0.95_01 2010-Mar-3 15:36-08:00 PST
Bug Fixes
* is_deeply() didn't see a difference in regexes [rt.cpan.org 53469]
* Test::Builder::Tester now sets $tb->todo_output to the output handle and
not the error handle (to be in accordance with the default behaviour of
Test::Builder and allow for testing TODO test behaviour).
* Fixed file/line in failing subtest() diagnostics. (Nick Cleaton)
* Protect against subtests setting $Level (Nick Cleaton)
New Features
* subtests without a 'plan' or 'no_plan' have an implicit 'done_testing()'
added to them.
* is_deeply() performance boost for large structures consisting of
mostly non-refs (Nick Cleaton)
Feature Changes
* is() and others will no longer stringify its arguments before
comparing. Overloaded objects will make use of their eq
overload rather than their "" overload. This can break tests of
impolitely string overloaded objects. DateTime prior to 0.54 is
the biggest example.
Test-Simple 0.94 2009-Sep-2 11:17-08:00 PDT
Releasing 0.93_01 as stable.
Test-Simple 0.93_01 2009-Jul-20 09:51-08:00 PDT
Bug Fixes
* Make sure that subtest works with Test:: modules which call
Test::Builder->new at the top of their code. (Ovid)
Other
* subtest() returns!
Test-Simple 0.92 2009-Jul-3 11:08-08:00 PDT
Test Fixes
* Silence noise on VMS in exit.t (Craig Berry)
* Skip Builder/fork_with_new_stdout.t on systems without fork (Craig Berry)
Test-Simple 0.90 2009-Jul-2 13:18-08:00 PDT
Docs
* Note the IO::Stringy license in our copy of it.
[test-more.googlecode.com 47]
Other
* This is a stable release for 5.10.1. It does not include
the subtest() work in 0.89_01.
Test-Simple 0.89_01 2009-Jun-23 15:13-08:00 EDT
New Features
* subtest() allows you to run more tests in their own plan.
(Thanks Ovid!)
* Test::Builder->is_passing() will let you check if the test is
currently passing.
Docs
* Finally added a note about the "Wide character in print" warning and
how to work around it.
Test Fixes
* Small fixes for integration with the Perl core
[bleadperl eaa0815147e13cd4ab5b3d6ca8f26544a9f0c3b4]
* exit code tests could be effected by errno when PERLIO=stdio
[bleadperl c76230386fc5e6fba9fdbeab473abbf4f4adcbe3]
Test-Simple 0.88 2009-May-30 12:31-08:00 PDT
Turing 0.87_03 into a stable release.
Test-Simple 0.87_03 2009-May-24 13:41-08:00 PDT
New Features
* isa_ok() now works on classes. (Peter Scott)
Test-Simple 0.87_02 2009-Apr-11 12:54-08:00 PDT
Test Fixes
* Some filesystems don't like it when you open a file for writing multiple
times. Fixes t/Builder/reset.t. [rt.cpan.org 17298]
* Check how an operating system is going to map exit codes. Some OS'
will map them... sometimes. [rt.cpan.org 42148]
* Fix Test::Builder::NoOutput on 5.6.2.
Test-Simple 0.87_01 2009-Mar-29 09:56-08:00 BST
New Features
* done_testing() allows you to declare that you have finished running tests,
and how many you ran. It is a safer no_plan and effectively replaces it.
* output() now supports scalar references.
Feature Changes
* You can now run a test without first declaring a plan. This allows
done_testing() to work.
* You can now call current_test() without first declaring a plan.
Bug Fixes
* skip_all() with no reason would output "1..0" which is invalid TAP. It will
now always include the SKIP directive.
Other
* Repository moved to github.
Test-Simple 0.86 2008-Nov-9 01:09-08:00 PST
Same as 0.85_01
Test-Simple 0.85_01 2008-Oct-23 18:57-08:00 PDT
New Features
* cmp_ok() now displays the error if the comparison throws one.
For example, broken overloaded objects.
Bug Fixes
* cmp_ok() no longer stringifies or numifies its arguments before comparing.
This makes cmp_ok() properly test overloaded ops.
[rt.cpan.org 24186] [code.google.com 16]
* diag() properly escapes blank lines.
Feature Changes
* cmp_ok() now reports warnings and errors as coming from inside cmp_ok,
as well as reporting the caller's file and line. This let's the user
know where cmp_ok() was called from while reminding them that it is
being run in a different context.
Other
* Dependency on ExtUtils::MakeMaker 6.27 only on Windows otherwise the
nested tests won't run.
Test-Simple 0.84 2008-Oct-15 09:06-08:00 EDT
Other
* 0.82 accidentally shipped with experimental Mouse dependency.
Test-Simple 0.82 2008-Oct-14 23:06-08:00 EDT
Bug Fixes
- 0.81_01 broke $TODO such that $TODO = '' was considered todo.
Test-Simple 0.81_02 2008-Sep-9 04:35-08:00 PDT
New Features
* Test::Builder->reset_outputs() to reset all the output methods back to
their defaults.
Bug Fixes
- Fixed the file and line number reported by like when it gets a bad
regex.
Feature Changes
- Now preserves the tests' exit code if it exits abnormally, rather than
setting it to 255.
- Changed the "Looks like your test died" message to
"Looks like your test exited with $exit_code"
- no_plan now only warns if given an argument. There were a lot of people
doing that, and it's a sensible mistake. [test-more.googlecode.com 13]
Test-Simple 0.81_01 2008-Sep-6 15:13-08:00 PDT
New Features
* Adam Kennedy bribed me to add new_ok(). The price was one DEFCON license key.
[rt.cpan.org 8891]
* TODO tests can now start and end with 'todo_start' and 'todo_end'
Test::Builder methods. [rt.cpan.org 38018]
* Added Test::Builder->in_todo() for a safe way to check if a test is inside a
TODO block. This allows TODO tests with no reason.
* Added note() and explain() to both Test::More and Test::Builder.
[rt.cpan.org 14764] [test-more.googlecode.com 3]
Feature Changes
* Changed the message for extra tests run to show the number of tests run rather than
the number extra to avoid the user having to do mental math.
[rt.cpan.org 7022]
Bug fixes
- using a relative path to perl broke tests [rt.cpan.org 34050]
- use_ok() broke $SIG{__DIE__} in the used module [rt.cpan.org 34065]
- diagnostics for isnt() were confusing on failure [rt.cpan.org 33642]
- warnings when MakeMaker's version contained _ [rt.cpan.org 33626]
- add explicit test that non-integer plans die correctly [rt.cpan.org 28836]
(Thanks to Hans Dieter Pearcey [confound] for fixing the above)
- die if no_plan is given an argument [rt.cpan.org 27429]
Test-Simple 0.80 2008-Apr-6 17:25-08:00 CEST
Test fixes
- Completely disable the utf8 test. It was causing perl to panic on some OS's.
Test-Simple 0.79_01 2008-Feb-27 03:04-08:00 PST
Bug fixes
- Let's try the IO layer copying again, this time with the test
fixed for 5.10.
Test-Simple 0.78 2008-Feb-27 01:59-08:00 PST
Bug fixes
* Whoops, the version of Test::Builder::Tester got moved backwards.
Test-Simple 0.77 2008-Feb-27 01:55-08:00 PST
Bug fixes
- "use Test::Builder::Module" no longer sets exported_to() or does
any other importing.
- Fix the $TODO finding code so it can find $TODO without the benefit
of exported_to(), which is often wrong.
- Turn off the filehandle locale stuff for the moment, there's a
problem on 5.10. We'll try it again next release.
Doc improvements
- Improve the Test::Builder SYNOPSIS to use Test::Builder::Module
rather than write it's own import().
Test-Simple 0.76_02 2008-Feb-24 13:12-08:00 PST
Bug fixes
* The default test output filehandles will NOT use utf8.
They will now copy the IO layers from STDOUT and STDERR.
This means if :utf8 is on then it will honor it and not
warn about wide characters.
Test-Simple 0.76_01 2008-Feb-23 20:44-08:00 PST
Bug fixes
* Test::Builder no longer uses a __DIE__ handler. This resolves a number
of problems with exit codes being swallowed or other module's handlers
being interfered with. [rt.cpan.org 25294]
- Allow maybe_regex() to detect blessed regexes. [bleadperl @32880]
- The default test output filehandles will now use utf8.
[rt.cpan.org 21091]
Test fixes
- Remove the signature test. Adds no security and just generates
failures.
Test-Simple 0.75 2008-Feb-23 19:03-08:00 PST
Incompatibilities
* The minimum version is now 5.6.0.
Bug fixes
- Turns out require_ok() had the same bug as use_ok() in a BEGIN block.
- ok() was not honoring exported_to() when looking for $TODO as it
should be.
Test fixes
* is_deeply_with_threads.t will not run unless AUTHOR_TESTING is set.
This is because it tickles intermittent threading bugs in many perls
and causes a lot of bug reports about which I can do nothing.
Misc
- Ran through perlcritic and did some cleaning.
Test-Simple 0.74 2007-Nov-29 15:39-08:00 PST
Misc
- Add abstract and author to the meta information.
Test-Simple 0.73_01 2007-Oct-15 20:35-08:00 EDT
Bug fixes
* Put the use_ok() fix from 0.71 back.
Test-Simple 0.72 2007-Sep-19 20:08-08:00 PDT
Bug unfixes
* The BEGIN { use_ok } fix for [rt.cpan.org 28345] revealed a small pile of
mistakes in CPAN module test suites. Rolling the fix back to give the
authors a bit of time to fix their tests.
Test-Simple 0.71 2007-Sep-13 20:42-08:00 PDT
Bug fixes
- Fixed a problem with BEGIN { use_ok } silently failing when there's no
plan set. [rt.cpan.org 28345] Thanks Adriano Ferreira and Yitzchak.
- Fixed an obscure problem with is_deeply() and overloading ==
[rt.cpan.org 20768]. Thanks Sisyphus.
Test fixes
- Removed dependency on Text::Soundex [rt.cpan.org 25022]
- Fixed a 5.5.x failure in fail-more.t
* Got rid of the annoying sort_bug.t test that revealed problems with some
threaded perls. It was testing the deprecated eq_* functions and not
worth the bother. Now it tests is_deeply(). [rt.cpan.org 17791]
Doc fixes
- Minor POD mistake in Test::Builder [rt.cpan.org 28869]
* Test::FAQ has been updated with some more answers.
Install fixes
- Fixed the "LICENSE is not a known MakeMaker parameter name" warning
on older MakeMakers for real this time.
Test-Simple 0.70 2007-Mar-15 15:53-08:00 PDT
Bug Fixes
* The change to is_fh() in 0.68 broke the case where a reference to
a tied filehandle is used for perl 5.6 and back. This made the tests
puke their guts out.
Test-Simple 0.69 2007-Mar-14 06:43-08:00 PDT
Test fixes
- Minor filename compatibility fix to t/fail-more.t [rt.cpan.org 25428]
Test-Simple 0.68 2007-Mar-13 17:27-08:00 PDT
Bug fixes
* If your code has a $SIG{__DIE__} handler in some cases functions like
use_ok(), require_ok(), can_ok() and isa_ok() could trigger that
handler. [rt.cpan.org 23509]
- Minor improvement to TB's filehandle detection in the case of overridden
isa(). [rt.cpan.org 20890]
- Will now install as a core module in 5.6.2 which ships with Test::More.
[rt.cpan.org 25163]
New Features
- Test::Builder->is_fh() provides a way to determine if a thing
can be used as a filehandle.
Documentation improvements
- Improved the docs for $Test::Builder::Level showing the encouraged
use (increment, don't set)
- Documented the return value of Test::Builder's test methods
- Split out TB's method documentation to differenciate between test
methods (ok, is_eq...), methods useful in testing (skip, BAILOUT...)
and methods useful for building your own tests (maybe_regex...).
Test fixes
- We required too old a version of Test::Pod::Coverage. Need 1.08 and not
1.00. [rt.cpan.org 25351]
Test-Simple 0.67 2007-Jan-22 13:27-08:00 PST
Test fixes
- t/pod_coverage.t would fail if Test::Pod::Coverage between 1.07 and
1.00 were installed as it depended on all_modules being exported.
[rt.cpan.org 24483]
Test-Simple 0.66 2006-Dec-3 15:25-08:00 PST
- Restore 5.4.5 compatibility ([email protected]) [rt.cpan.org 20513]
Test-Simple 0.65 2006-Nov-10 10:26-08:00 CST