GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Rubygem
Description: Resource-oriented open source Ruby framework for Web apps.
Homepage: http://rubywaves.com/
Clone URL: git://github.com/dyoder/waves.git
basic specs for response_mixin
automatthew (author)
Wed Jul 23 09:59:25 -0700 2008
commit  15067219f3898bffe8a0ce2ee9a0fd5f099449fe
tree    b15d751c12446624795b348df750de5459e020e4
parent  dd60606cef15742b1643e7f04de67fb0849e7ceb
...
104
105
106
107
108
109
 
 
 
 
110
111
112
...
116
117
118
119
 
 
 
120
121
122
 
123
124
125
...
104
105
106
 
 
 
107
108
109
110
111
112
113
...
117
118
119
 
120
121
122
123
124
125
126
127
128
129
0
@@ -104,9 +104,10 @@ end
0
 desc "Run verification suite."
0
 Rake::TestTask.new(:verify) do |t|
0
   t.test_files = FileList["verify/**/*.rb"].exclude(
0
- "**/helpers.rb",
0
- "**/foundations/*_application/**/*",
0
- "**/app_generation/*.rb")
0
+ "**/track_*.rb",
0
+ "**/helpers.rb",
0
+ "**/foundations/*_application/**/*",
0
+ "**/app_generation/*.rb")
0
   t.verbose = true
0
 end
0
 
0
@@ -116,10 +117,13 @@ namespace :verify do
0
   FileList["verify/*/"].each do |area|
0
     task = area.chomp("/").sub("verify/", '')
0
     Rake::TestTask.new(task) do |t|
0
- t.test_files = FileList["#{area}**/*.rb"].exclude("**/helpers.rb")
0
+ t.test_files = FileList["#{area}**/*.rb"].exclude(
0
+ "**/track_*.rb",
0
+ "**/helpers.rb")
0
       t.verbose = true
0
     end
0
   end
0
+
0
 
0
 end
0
 
...
1
2
3
 
 
 
 
 
...
 
 
 
1
2
3
4
5
0
@@ -1,3 +1,5 @@
0
-%w( rubygems bacon facon ).each { |f| require f }
0
-Bacon.extend Bacon::TestUnitOutput
0
-Bacon.summary_on_exit
0
+require File.join(File.dirname(__FILE__) , "..", "helpers")
0
+
0
+clear_all_apps
0
+module VerifyCore; include Waves::Foundations::Simple; end
0
+
...
1
2
 
 
 
3
4
5
...
1
 
2
3
4
5
6
7
0
@@ -1,5 +1,7 @@
0
 # require 'test_helper' because RubyMate needs help
0
-require File.join(File.dirname(__FILE__) , "helpers")
0
+%w( rubygems bacon facon ).each { |f| require f }
0
+Bacon.extend Bacon::TestUnitOutput
0
+Bacon.summary_on_exit
0
 
0
 UTILITIES = "#{File.dirname(__FILE__)}/../../lib/utilities"
0
 

Comments

    No one has commented yet.