ChiliProject is not maintained anymore. Please be advised that there will be no more updates.

We do not recommend that you setup new ChiliProject instances and we urge all existing users to migrate their data to a maintained system, e.g. Redmine. We will provide a migration script later. In the meantime, you can use the instructions by Christian Daehn.

coveralls.diff

Toshi MARUYAMA, 2013-04-29 06:33 am

Download (696 Bytes)

 
b/Gemfile
23 23
  gem 'mocha', '0.12.1'
24 24
  # capybara 2 drops ruby 1.8.7 compatibility
25 25
  gem 'capybara', '< 2.0.0'
26

  
27
  gem 'coveralls', :require => false
26 28
end
27 29

  
28 30
group :ldap do
b/test/test_helper.rb
13 13
#++
14 14

  
15 15
ENV["RAILS_ENV"] = "test"
16

  
17
require 'coveralls'
18
Coveralls.wear!('rails')
19

  
16 20
require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
17 21
require 'test_help'
18 22
require File.expand_path(File.dirname(__FILE__) + '/helper_testcase')