File: ChangeLog

package info (click to toggle)
libtest-simpleunit-perl 1.21-5
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 264 kB
  • sloc: perl: 1,215; makefile: 2
file content (389 lines) | stat: -rw-r--r-- 11,552 bytes parent folder | download | duplicates (3)
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
2003-01-15 13:48  Michael Granger <ged@FaerieMUD.org>

	* t/15_setupteardown.t (1.4):

	- Added/refined tests to match refined setup/teardown behaviour.
	
2003-01-15 13:47  Michael Granger <ged@FaerieMUD.org>

	* Makefile.PL (1.5):

	- Converted to use ExtUtils::AutoInstall.
	
2003-01-15 13:46  Michael Granger <ged@FaerieMUD.org>

	* t/: 05_importTestData.t (1.1), 12_testdata.t (1.1):

	Initial commit.
	
2003-01-15 12:58  Michael Granger <ged@FaerieMUD.org>

	* lib/Test/SimpleUnit.pm (1.21):

	- Removed leftover conflict section.
	
2003-01-15 12:48  Michael Granger <ged@FaerieMUD.org>

	* lib/Test/SimpleUnit.pm (1.20):

	- Added 'AutoskipFailedTeardown' global and accessors.
	
	- Added loadTestData() and saveTestData() functions and ':testdata' export flag
	
	- Modified comparison assertions to use Data::Compare.
	
	- Added functions/data to allow modification of output handle.
	
	- Generalized assertion-bookkeeping into functions.
	
	- Handled undefined values more cleanly in assertion messages.
	
	- Added ability to stack setup/teardown functions for one-time setup or
	  teardowns.
	
2002-06-24 16:28  Michael Granger <ged@FaerieMUD.org>

	* t/: 05_asserts.t (1.5), 06_skips.t (1.4), 07_setupteardown.t
	(1.4), 08_emptysuite.t (1.2), 09_bugs.t (1.2):

	'Updated'
	
2002-05-14 17:39  Michael Granger <ged@FaerieMUD.org>

	* lib/Test/SimpleUnit.pm (1.19):

	- Cleaned up handling of undef values in default error messages for
	  assertKindOf() and assertInstanceOf().
	
2002-05-13 21:02  Michael Granger <ged@FaerieMUD.org>

	* Makefile.PL (1.4, RELEASE_1_18):

	- Added some dependencies to the require list.
	
2002-05-13 21:01  Michael Granger <ged@FaerieMUD.org>

	* lib/Test/SimpleUnit.pm (1.18, RELEASE_1_18):

	- Added functions/package variables to support switching the test output IO
	  handle to something different for the purposes of self-testing.
	
	- Modified assertion counter code to support recursive calls to runTests().
	
2002-05-13 20:59  Michael Granger <ged@FaerieMUD.org>

	* t/: 09_bugs.t (1.1), 30_bugs.t (1.1) (utags: RELEASE_1_18):

	- Initial commit.
	
2002-04-25 14:53  Michael Granger <ged@FaerieMUD.org>

	* t/: 07_setupteardown.t (1.3), 15_setupteardown.t (1.3) (utags:
	RELEASE_1_18, RELEASE_1_17):

	- Modified to test the setup/teardown superseding rules.
	
2002-04-25 14:52  Michael Granger <ged@FaerieMUD.org>

	* README (1.4, RELEASE_1_18, RELEASE_1_17):

	- Cleaned up to reflect the changes made to the module.
	
	- Clarified meaning of parts, added better example, etc.
	
	- Removed references to XUnit, as this isn't exactly an XUnit-type framework.
	
2002-04-25 14:50  Michael Granger <ged@FaerieMUD.org>

	* lib/Test/SimpleUnit.pm (1.17, RELEASE_1_17):

	- Cleaned up and corrected documentation.
	
	- Separated example code from synopsis
	
	- Added beginnings of debugging code
	
	- Modified setup/teardown to use superseding rule instead of additive rules.
	
2002-04-23 16:04  Michael Granger <ged@FaerieMUD.org>

	* lib/Test/SimpleUnit.pm (1.16, RELEASE_1_16):

	- Split up somewhat into functions.
	
	- Fixed bug that surfaced when running an empty test suite, or a suite with only
	  'setup' and 'teardown' tests.
	
	- Fixed error reporting: now failures are reported for TEST_VERBOSE=1 as well as
	  VERBOSE=1.
	
2002-04-23 16:01  Michael Granger <ged@FaerieMUD.org>

	* t/: 08_emptysuite.t (1.1), 20_emptysuite.t (1.1) (utags:
	RELEASE_1_18, RELEASE_1_17, RELEASE_1_16):

	Initial commit.
	
2002-04-22 16:15  Michael Granger <ged@FaerieMUD.org>

	* lib/Test/SimpleUnit.pm (1.15, RELEASE_1_15):

	- Fixed some X<> POD constructs that should have been L<> ones.
	
2002-04-22 16:14  Michael Granger <ged@FaerieMUD.org>

	* README (1.3, RELEASE_1_16, RELEASE_1_15):

	- Added longer description.
	
2002-04-15 13:54  Michael Granger <ged@FaerieMUD.org>

	* t/: 06_skips.t (1.3), 11_skips.t (1.3) (utags: RELEASE_1_18,
	RELEASE_1_15, RELEASE_1_14, RELEASE_1_17, RELEASE_1_16):

	- Added 'AutoskipFailedSetup' tests.
	
2002-04-15 13:54  Michael Granger <ged@FaerieMUD.org>

	* lib/Test/SimpleUnit.pm (1.14, RELEASE_1_14):

	- Updated, added documentation
	
	- Changed AutoskipFailedSetup to a function, as it was rather incongruous as a
	  method. The method style stills works, but it's deprecated.
	
	- Added code to allow 'setup' and 'teardown' cases to specify their coderefs
	  with a 'func' key rather than 'test' for clarity.
	
2002-04-08 12:57  Michael Granger <ged@FaerieMUD.org>

	* README (1.2, RELEASE_1_14, RELEASE_1_13):

	- De-tabified.
	
2002-04-08 12:52  Michael Granger <ged@FaerieMUD.org>

	* README (1.1):

	Initial commit.
	
2002-04-08 12:50  Michael Granger <ged@FaerieMUD.org>

	* t/: 05_asserts.t (1.4), 10_asserts.t (1.4) (utags: RELEASE_1_18,
	RELEASE_1_15, RELEASE_1_14, RELEASE_1_17, RELEASE_1_16,
	RELEASE_1_13):

	- Modified error messages to reflect changes in assert().
	
2002-04-08 12:47  Michael Granger <ged@FaerieMUD.org>

	* lib/Test/SimpleUnit.pm (1.13, RELEASE_1_13):

	- Modified to pass "\n" as the last arg to die to remove the irrelevant 'at
	  line...' message. When I have more time, I should add code to backtrace
	  through caller() and get a useful equivalent.
	
	- Look for $ENV{TEST_VERBOSE}, too.
	
2002-03-29 16:45  Michael Granger <ged@FaerieMUD.org>

	* Makefile.PL (1.3, RELEASE_1_17, RELEASE_1_16, RELEASE_1_15,
	RELEASE_1_14, RELEASE_1_13, RELEASE_1_12):

	- Fixed ci/tag target
	
2002-03-29 16:41  Michael Granger <ged@FaerieMUD.org>

	* Makefile.PL (1.2), lib/Test/SimpleUnit.pm (1.12, RELEASE_1_12),
	t/00_require.t (1.2, RELEASE_1_18, RELEASE_1_17, RELEASE_1_16,
	RELEASE_1_15, RELEASE_1_14, RELEASE_1_13, RELEASE_1_12),
	t/01_importAll.t (1.2, RELEASE_1_18, RELEASE_1_17, RELEASE_1_16,
	RELEASE_1_15, RELEASE_1_14, RELEASE_1_13, RELEASE_1_12),
	t/02_importAsserts.t (1.3, RELEASE_1_18, RELEASE_1_17,
	RELEASE_1_16, RELEASE_1_15, RELEASE_1_14, RELEASE_1_13,
	RELEASE_1_12), t/03_importTfuncs.t (1.2, RELEASE_1_18,
	RELEASE_1_17, RELEASE_1_16, RELEASE_1_15, RELEASE_1_14,
	RELEASE_1_13, RELEASE_1_12), t/04_importSkips.t (1.2, RELEASE_1_18,
	RELEASE_1_17, RELEASE_1_16, RELEASE_1_15, RELEASE_1_14,
	RELEASE_1_13, RELEASE_1_12), t/05_asserts.t (1.3, RELEASE_1_12),
	t/06_skips.t (1.2, RELEASE_1_13, RELEASE_1_12),
	t/07_setupteardown.t (1.2, RELEASE_1_16, RELEASE_1_15,
	RELEASE_1_14, RELEASE_1_13, RELEASE_1_12), t/10_asserts.t (1.3,
	RELEASE_1_12), t/11_skips.t (1.2, RELEASE_1_13, RELEASE_1_12),
	t/15_setupteardown.t (1.2, RELEASE_1_16, RELEASE_1_15,
	RELEASE_1_14, RELEASE_1_13, RELEASE_1_12):

	- Renamed to Test::SimpleUnit
	
2002-03-29 15:59  Michael Granger <ged@FaerieMUD.org>

	* TestFramework.pm (1.12):

	Renamed and moved into lib/Test
	
2002-03-28 14:01  Michael Granger <ged@FaerieMUD.org>

	* TestFramework.pm (1.11, RELEASE_1_11), lib/Test/SimpleUnit.pm
	(1.11):

	- Fixed copyright.
	
2002-03-28 13:59  Michael Granger <ged@FaerieMUD.org>

	* TestFramework.pm (1.10), lib/Test/SimpleUnit.pm (1.10):

	- assertExceptionMatches(): New assertion function.
	
	- assertExceptionType(): New assertion function.
	
	- assertKindOf(): New assertion function.
	
	- Corrected skip handling for setup/teardown.
	
	- Added handler for 'skipAll' to setup/teardown.
	
2002-03-28 12:00  Michael Granger <ged@FaerieMUD.org>

	* t/: 05_asserts.t (1.2), 10_asserts.t (1.2) (utags: RELEASE_1_11):

	- Added tests for assertExceptionType() and assertExceptionMatch().
	
	- Simplified some of the other tests with new asserts.
	
2002-03-22 18:21  Michael Granger <ged@FaerieMUD.org>

	* t/: 07_setupteardown.t (1.1), 15_setupteardown.t (1.1) (utags:
	RELEASE_1_11, RELEASE_1_09):

	First commit.
	
2002-03-22 18:20  Michael Granger <ged@FaerieMUD.org>

	* TestFramework.pm (1.9, RELEASE_1_09), lib/Test/SimpleUnit.pm
	(1.9):

	- Added 'setup' and 'teardown' test handling to facilitate XUnit-style pre- and post-test functions. This feature still needs documenting.
	
	- AutoskipFailedSetup(): New method to automatically skip any tests in a test case after a 'setup' test has failed.
	
2002-03-21 18:30  Michael Granger <ged@FaerieMUD.org>

	* t/: 04_importSkips.t (1.1, RELEASE_1_11), 05_asserts.t (1.1),
	06_skips.t (1.1, RELEASE_1_11), 10_asserts.t (1.1), 11_skips.t
	(1.1, RELEASE_1_11) (utags: RELEASE_1_09):

	Initial commit.
	
2002-03-21 18:30  Michael Granger <ged@FaerieMUD.org>

	* t/04_asserts.t (1.3):

	- Renamed to 05_asserts.t to make room for the skip-import tests.
	
2002-03-21 18:27  Michael Granger <ged@FaerieMUD.org>

	* TestFramework.pm (1.8), lib/Test/SimpleUnit.pm (1.8):

	- fail: New function
	
	- skipOne: New function
	
	- skipAll: New function
	
	- Fixed up some warnings that showed up when using assertUndef() and assertNot()
	  with undefined values and no message.
	
2002-03-05 15:47  Michael Granger <ged@FaerieMUD.org>

	* t/04_asserts.t (1.2):

	- Modified import tag to reflect name change from 'assertFunctions' to
	  'asserts'.
	
	- Added tests for new assertions 'assertDefined' and 'assertUndef'.
	
2002-03-05 15:46  Michael Granger <ged@FaerieMUD.org>

	* t/02_importAsserts.t (1.2, RELEASE_1_11, RELEASE_1_09):

	- Modified import tag to reflect name change from 'assertFunctions' to
	  'asserts'.
	
2002-03-05 15:46  Michael Granger <ged@FaerieMUD.org>

	* TestFramework.pm (1.7), lib/Test/SimpleUnit.pm (1.7):

	- Changed the name of the assertion exporter tag to 'asserts'; an
	  'assertFunctions' tag remains for backwards-compatibility, but may be
	  deprecated in the future.
	
	- Added 'assertUndef' assertion
	
	- Added 'assertDefined' assertion
	
2001-11-28 13:13  Michael Granger <ged@FaerieMUD.org>

	* TestFramework.pm (1.6), lib/Test/SimpleUnit.pm (1.6):

	- Update documentation.
	
2001-10-29 12:43  Michael Granger <ged@FaerieMUD.org>

	* t/04_asserts.t (1.1):

	First release.
	
2001-10-29 12:43  Michael Granger <ged@FaerieMUD.org>

	* TestFramework.pm (1.5), lib/Test/SimpleUnit.pm (1.5):

	- Cleaned up a bunch of places where an undefined value in an assertion value
	  was not handled gracefully. There are probably more somewhere.
	
	- Added two more assertion functions: assertMatches() and assertNotRef().
	
	- Moved the scalar test out of assertRef() and into the new assertNotRef().
	
	- Made the error message for assertInstanceOf() a bit more accurate.
	
2001-09-08 23:12  Michael Granger <ged@FaerieMUD.org>

	* TestFramework.pm (1.4), lib/Test/SimpleUnit.pm (1.4):

	- Fixed POD escape thingies in the docs.
	
2001-09-08 23:10  Michael Granger <ged@FaerieMUD.org>

	* TestFramework.pm (1.3), lib/Test/SimpleUnit.pm (1.3):

	- Fixed auto-generated docs, as the moduletool parser apparently doesn't like
	  code sample indent stuff.
	
2001-08-03 16:35  Michael Granger <ged@FaerieMUD.org>

	* TestFramework.pm (1.2), lib/Test/SimpleUnit.pm (1.2):

	- Fixed and added more documentation
	
	- Added true return value at module end
	
2001-08-03 15:55  Michael Granger <ged@FaerieMUD.org>

	* Makefile.PL (1.1.1.1, RELEASE_1_11, RELEASE_1_09, RELEASE_1_1),
	TestFramework.pm (1.1.1.1, RELEASE_1_1), lib/Test/SimpleUnit.pm
	(1.1.1.1), t/00_require.t (1.1.1.1, RELEASE_1_11, RELEASE_1_09,
	RELEASE_1_1), t/01_importAll.t (1.1.1.1, RELEASE_1_11,
	RELEASE_1_09, RELEASE_1_1), t/02_importAsserts.t (1.1.1.1,
	RELEASE_1_1), t/03_importTfuncs.t (1.1.1.1, RELEASE_1_11,
	RELEASE_1_09, RELEASE_1_1):

	Initial release.
	
2001-08-03 15:55  Michael Granger <ged@FaerieMUD.org>

	* Makefile.PL (1.1), TestFramework.pm (1.1), lib/Test/SimpleUnit.pm
	(1.1), t/00_require.t (1.1), t/01_importAll.t (1.1),
	t/02_importAsserts.t (1.1), t/03_importTfuncs.t (1.1):

	Initial revision