madx / merb-todolist

A small todo list written with Merb

This URL has Read+Write access

merb-todolist / spec / spec_helper.rb
100644 12 lines (9 sloc) 0.392 kb
1
2
3
4
5
6
7
8
9
10
11
12
require 'rubygems'
require 'merb-core'
require 'spec' # Satiates Autotest and anyone else not using the Rake tasks
 
Merb.start_environment(:testing => true, :adapter => 'runner', :environment => ENV['MERB_ENV'] || 'test')
 
Spec::Runner.configure do |config|
  config.include(Merb::Test::ViewHelper)
  config.include(Merb::Test::RouteHelper)
  config.include(Merb::Test::ControllerHelper)
end