forked from turn-project/turn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHistory.txt
More file actions
118 lines (97 loc) · 3.94 KB
/
History.txt
File metadata and controls
118 lines (97 loc) · 3.94 KB
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
== 0.9.3 / 2012-02-09
* Default to pretty reporter.
* Can set reporter via `rpt` environment variable.
* Fix backtrace filter.
* Fix require warning when using cli.
* Add skip counts to reporter tallies. (y8)
* Improve Pretty reporter output. (y8)
== 0.9.2 / 2012-02-08
* Fix colorization config issue.
* Switch to simple dotruby build system.
== 0.9.1 / 2012-02-01
* MiniTest Only
* Fix issues with 1.8.7 support.
== 0.9.0 / 2012-01-30
* Fix bundle exec issue, which means...
* Developer's must require `turn/autorun` instead fo just `turn`.
* Improve detection of TestUnit 1.x vs. MiniTest
* Show randomization seed number in output.
* Pretty format option is now `-R` instead of `-T`.
* Rename case match shortcut to `-c` instead of `-t`.
* Add support for skipped tests.
* Support max backtrace limit via `-b` option.
* Use $RUBY_IGNORE_CALLERS to ignore lines of backtrace.
* Better color support on Windows (install ANSICON)
* MiniTest is a dependency (even if you are using it for TestUnit 1.x).
== 0.8.4 / 2011-11-11
* Now must use MiniTest 2.0+.
== 0.8.3 / 2011-10-10
* Merge pull request #56 from codeinvain/master
* Merge pull request #52 from markburns/patch-2
* Merge pull request #51 from markburns/patch-1
* Merge pull request #50 from tpope/stdout_tty
* Switch COLORIZE to method for easier testing
* Don't show colors if stdout is not a tty
* Use global config.
* Autoload Test::Unit and MiniTest.
* Autorun uses Turn's runner classes.
* minitest changed Unit#run, set Unit.runner= if method exists
* Merge pull request #39 from dubek/fix_term_detection_for_ruby_19
* Merge pull request #38 from cameel/fix-minitest-run-monkeypatch-no-trace
* Merge pull request #36 from yalab/master
* Don't use ANSI codes on dumb terminals in Ruby 1.9
* Make Turn work with gems that monkey-patch MiniTest::Unit::TestCase.run()
* Fixed pretty_reporter to use 'trace' option.
* Fixed dot_reporter to use 'trace' option.
* Fixed outline_reporter to use 'trace' option.
* Add -t or --trace option for display all stacktrace.
* missing #skip! method in TestMethod
* Merge branch 'master' of github.com:TwP/turn
* use autoload to load MiniTests emulation of TestUnit
* do not use color if in a VIM session
== 0.8.2 / 2011-03-31
* Add version in code and cli option to display it.
* Fix for files lookup controller bug
* Limit default test matching to *.rb files.
* Show first line from the test file when showing stack traces [F. Morgan Whitney]
* Make minitest output compatible with natural language case naming [David Heinemeier Hansson]
== 0.8.1 / 2010-09-10
* Fix misspelling of "raised" which prevented proper recording of errors.
* Fix IsoRunner so it passes error, not just error message.
== 0.8.0 / 2010-06-02
* Mintest support
* Two new reporters
== 0.7.1 / 2009-12-25
* Copied String#tab from Facets.
* Facets is no longer needed as direct dependency.
== 0.7.0 / 2009-10-13
* Fix typo and potential bug.
* Running ruby with /usr/bin/env for portability
* Adding --name=PATTERN for test name filtering
* ANSI class is all caps
== 0.6.3 / 2009-10-12
* Fixing require statements
== 0.6.2 / 2009-10-07
* Detecting rails environment and adjusting output accordingly
* Colorizing the filename
== 0.6.1 / 2009-08-26
* Switched ANSI color support to ANSI project.
== 0.6.0 / 2009-05-30
* Testrunner @io renamed to @output for test/unit 2.
== 0.5.1 / 2009-03-25
* fixed a "convert nil into String" error
== 0.4.0 / 2008-09-18
* add solo and cross runners
* move Colorize into separate file
* use ::ANSICode instead of ::Console::ANSICode
== 0.3.0 / 2007-12-11
* color highlighting now works (need facets-2.0 library)
== 0.2.0 / 2006-11-26
* add the "turn" executable
* fixed warnings
== 0.1.2 / 2006-11-13
* added some instructions for using the package
== 0.1.1 / 2006-11-10
* removed explicit dependency on the 'hoe' gem
== 0.1.0 / 2006-11-10
* initial release