public
Rubygem
Description: BDD that talks to domain experts first and code second
Homepage: http://cukes.info/
Clone URL: git://github.com/aslakhellesoy/cucumber.git
Fixed bug 111.
alan (author)
Tue Dec 02 14:48:34 -0800 2008
commit  aaf62551c0b6b6319d59293e5579550c082c52ee
tree    c2dcf38de1a45819a1a5fa5ffe87076f55505482
parent  d68fc2debcbfb63724e3606bedcb827b74c65543
...
1
2
 
 
 
 
 
 
 
 
3
4
5
...
1
2
3
4
5
6
7
8
9
10
11
12
13
0
@@ -1,5 +1,13 @@
0
 == 0.1.12 (In Git)
0
 
0
+== New features
0
+
0
+== Bugfixes
0
+
0
+== Removed features
0
+
0
+* Fixed bug which was preventing coloring under Autotest (#111, Alan Larkin)
0
+
0
 == 0.1.11 2008-12-02
0
 
0
 Bugfix release with a couple of minor additional features to the command line options.
...
113
114
115
116
 
117
118
119
...
113
114
115
 
116
117
118
119
0
@@ -113,7 +113,7 @@ module Autotest::CucumberMixin
0
     else
0
       args = %w{features --format} << (scenarios_to_run == :all ? "progress" : "pretty")
0
     end
0
-    args += %w{--format autotest --out} << dirty_scenarios_filename
0
+    args += %w{--format autotest --color --out} << dirty_scenarios_filename
0
     args = args.join(' ')
0
     
0
     if scenarios_to_run == :all

Comments