File tree Expand file tree Collapse file tree 2 files changed +4
-12
lines changed Expand file tree Collapse file tree 2 files changed +4
-12
lines changed Original file line number Diff line number Diff line change @@ -38,13 +38,13 @@ group :odbc do
3838end
3939
4040group :development do
41- gem "turn"
4241 gem 'bcrypt-ruby' , '~> 3.0.0'
4342 gem 'bench_press'
4443 gem 'mocha'
4544 gem 'minitest-spec-rails'
4645 gem 'nokogiri'
4746 gem 'rake' , '~> 0.9.2'
4847 gem 'ruby-prof'
48+ gem 'simplecov'
4949end
5050
Original file line number Diff line number Diff line change 1- begin
2- require 'turn'
3-
4- Turn . config do |c |
5- c . format = :pretty
6- c . verbose = true
7- end
8- rescue LoadError
9- end
10-
111SQLSERVER_TEST_ROOT = File . expand_path ( File . join ( File . dirname ( __FILE__ ) , '..' ) )
122SQLSERVER_ASSETS_ROOT = File . expand_path ( File . join ( SQLSERVER_TEST_ROOT , 'assets' ) )
133SQLSERVER_FIXTURES_ROOT = File . expand_path ( File . join ( SQLSERVER_TEST_ROOT , 'fixtures' ) )
2111require 'rubygems'
2212require 'bundler'
2313Bundler . setup
14+ require 'simplecov'
15+ SimpleCov . start
16+
2417require 'mocha/api'
2518require 'active_support/dependencies'
2619require 'active_record'
3023require 'minitest-spec-rails/init/mini_shoulda'
3124require 'cases/helper'
3225require 'models/topic'
33-
3426GC . copy_on_write_friendly = true if GC . respond_to? ( :copy_on_write_friendly? )
3527
3628ActiveRecord ::Migration . verbose = false
You can’t perform that action at this time.
0 commit comments