public
Description: Makes tests easy on the fingers and the eyes
Homepage: http://www.thoughtbot.com/projects/shoulda
Clone URL: git://github.com/thoughtbot/shoulda.git
Search Repo:
missed some renames

git-svn-id: https://svn.thoughtbot.com/plugins/shoulda/trunk@84 
7bbfaf0e-4d1d-0410-9690-a8bb5f8ef2aa
tsaleh (author)
Fri Apr 06 08:09:35 -0700 2007
commit  f77e17b6e4c4d899ed19d23f0502dda2aef4916f
tree    31e97c1802cfc2c2a28ea0ff61695fe5af40e372
parent  7910643c6f48fa7d502a2a2fb50bc331f565d4a4
...
1
2
3
 
...
1
2
 
3
0
@@ -1,4 +1,4 @@
0
 require 'rubygems'
0
 require 'active_support'
0
-require 'tb_test_helpers'
0
+require 'shoulda'
...
3
4
5
6
 
7
8
9
...
3
4
5
 
6
7
8
9
0
@@ -3,7 +3,7 @@
0
 # Completely stolen from redgreen gem
0
 #
0
 # Adds colored output to your tests. Specify <tt>color: true</tt> in
0
-# your <tt>test/tb_test_helpers.conf</tt> file to enable.
0
+# your <tt>test/shoulda.conf</tt> file to enable.
0
 #
0
 # *Bug*: for some reason, this adds another line of output to the end of
0
 # every rake task, as though there was another (empty) set of tests.
...
3
4
5
6
7
 
 
8
9
10
...
3
4
5
 
 
6
7
8
9
10
0
@@ -3,8 +3,8 @@
0
 require 'general'
0
 require 'yaml'
0
 
0
-config_file = "tb_test_helpers.conf"
0
-config_file = defined?(RAILS_ROOT) ? File.join(RAILS_ROOT, "test", "tb_test_helpers.conf") : File.join("test", "tb_test_helpers.conf")
0
+config_file = "shoulda.conf"
0
+config_file = defined?(RAILS_ROOT) ? File.join(RAILS_ROOT, "test", "shoulda.conf") : File.join("test", "shoulda.conf")
0
 
0
 tb_test_options = (YAML.load_file(config_file) rescue {}).symbolize_keys
0
 require 'color' if tb_test_options[:color]
...
3
4
5
6
 
...
3
4
5
 
6
0
@@ -3,5 +3,5 @@
0
 require 'rubygems'
0
 require 'active_support'
0
 require 'test/unit'
0
-require 'tb_test_helpers'
0
+require 'shoulda'

Comments

    No one has commented yet.