Sha256: 0d5f4fe51b9195f1916210cc530bbb17bd6fb0ef30ba222a536f29152225ce7d

Contents?: true

Size: 987 Bytes

Versions: 17

Compression:

Stored size: 987 Bytes

Contents

require 'pathname'
require 'simplecov'
require 'coveralls'

# Configure coverage stats.
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
  SimpleCov::Formatter::HTMLFormatter,
  Coveralls::SimpleCov::Formatter
]
SimpleCov.start do
  add_filter do |source_file|
    filename = Pathname.new(source_file.filename).basename
    ignored_files = [
      "version.rb",
      "allscripts_unity_client.gemspec",
      "Gemfile",
      "Rakefile"
    ]

    ignored_files.include?(filename) || source_file.filename.include?("spec/")
  end
end

lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)

require 'allscripts_unity_client'

require 'rspec'
require 'webmock/rspec'
require 'savon/mock/spec_helper'
require 'securerandom'
require 'faker'
require 'factory_girl'
require 'json'

# Include all support files
Dir["./spec/support/**/*.rb"].sort.each { |f| require f }

# Include all factories
FactoryGirl.find_definitions

RSpec.configure do |config|
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
allscripts_unity_client-1.3.4 spec/spec_helper.rb
allscripts_unity_client-1.3.3 spec/spec_helper.rb
allscripts_unity_client-1.3.2 spec/spec_helper.rb
allscripts_unity_client-1.3.1 spec/spec_helper.rb
allscripts_unity_client-1.3.0 spec/spec_helper.rb
allscripts_unity_client-1.2.7 spec/spec_helper.rb
allscripts_unity_client-1.2.6 spec/spec_helper.rb
allscripts_unity_client-1.2.5 spec/spec_helper.rb
allscripts_unity_client-1.2.4 spec/spec_helper.rb
allscripts_unity_client-1.2.3 spec/spec_helper.rb
allscripts_unity_client-1.2.2 spec/spec_helper.rb
allscripts_unity_client-1.2.1 spec/spec_helper.rb
allscripts_unity_client-1.2.0 spec/spec_helper.rb
allscripts_unity_client-1.1.1 spec/spec_helper.rb
allscripts_unity_client-1.1.0 spec/spec_helper.rb
allscripts_unity_client-1.0.4 spec/spec_helper.rb
allscripts_unity_client-1.0.3 spec/spec_helper.rb