test/test_helper.rb in grippy-doozer-0.1.3 vs test/test_helper.rb in grippy-doozer-0.1.4
- old
+ new
@@ -4,7 +4,23 @@
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
$LOAD_PATH.unshift(File.dirname(__FILE__))
require 'doozer'
-class Test::Unit::TestCase
-end
+class RoutingHelper < Test::Unit::TestCase
+
+ def setup
+ printf "\n Routing Helper setup... \n"
+ @app_path = File.join(File.dirname(__FILE__), 'project')
+
+ #--boot
+ Doozer::Initializer.boot(:test, app_path=@app_path)
+
+ #--instantiate Doozer::App
+ @app = Doozer::App.new(args={})
+
+ end
+
+ def default_test
+
+ end
+end
\ No newline at end of file