Sha256: 9512d880920f256212d4b679fe98fecb43e106650f9c045fb18af40da4669d1f

Contents?: true

Size: 961 Bytes

Versions: 11

Compression:

Stored size: 961 Bytes

Contents

#--
# Cloud Foundry 2012.02.03 Beta
# Copyright (c) [2009-2012] VMware, Inc. All Rights Reserved.
#
# This product is licensed to you under the Apache License, Version 2.0 (the "License").
# You may not use this product except in compliance with the License.
#
# This product includes a number of subcomponents with
# separate copyright notices and license terms. Your use of these
# subcomponents is subject to the terms and conditions of the
# subcomponent's license, as noted in the LICENSE file.
#++

if ENV['COVERAGE']
  require "simplecov"
  if ENV['COVERAGE'] =~ /rcov/
    require "simplecov-rcov"
    SimpleCov.formatter = SimpleCov::Formatter::RcovFormatter
  end
  SimpleCov.add_filter "^#{File.dirname(__FILE__)}" if ENV['COVERAGE'] =~ /exclude-spec/
  SimpleCov.add_filter "^#{File.expand_path(File.join(File.dirname(__FILE__), "..", "vendor"))}" if ENV['COVERAGE'] =~ /exclude-vendor/
  SimpleCov.start
end

require 'rspec'

module SpecHelper
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
cf-uaa-lib-1.3.10 spec/spec_helper.rb
cf-uaa-lib-1.3.9 spec/spec_helper.rb
cf-uaa-lib-1.3.8 spec/spec_helper.rb
cf-uaa-lib-1.3.7 spec/spec_helper.rb
cf-uaa-lib-1.3.6 spec/spec_helper.rb
cf-uaa-lib-1.3.5 spec/spec_helper.rb
cf-uaa-lib-1.3.4 spec/spec_helper.rb
cf-uaa-lib-1.3.3 spec/spec_helper.rb
cf-uaa-lib-1.3.2 spec/spec_helper.rb
cf-uaa-lib-1.3.1 spec/spec_helper.rb
cf-uaa-lib-1.3.0 spec/spec_helper.rb