Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

vistahigherlearning / common_cartridge   ruby

Repository URL to install this package:

/ spec / spec_helper.rb

require 'bundler/setup'
Bundler.setup

require 'common_cartridge'

CommonCartridge.configure do |c|
  c.import_directory = File.join(Dir.pwd, 'spec', 'files')
end

RSpec.configure do |config|
  config.order = :random
  Kernel.srand config.seed
end