Sha256: da1801cd0bed0d6cc982bc91cb6ff53419072412bce36af879f769762d7e436b
Contents?: true
Size: 571 Bytes
Versions: 1
Compression:
Stored size: 571 Bytes
Contents
# loads and runs all tests for the rxsd project # # Copyright (C) 2010 Mohammed Morsi <movitto@yahoo.com> # Licensed under the AGPLv3+ http://www.gnu.org/licenses/agpl.txt require 'rspec' require 'nokogiri' require 'logger' begin require 'byebug' rescue LoadError => e Logger.new(STDOUT).warn("Could not load byebug, continuing without it") end def spec_logger @spec_logger_cache ||= Logger.new(STDOUT).tap do |logr| logr.level = Logger::WARN end end CURRENT_DIR=File.dirname(__FILE__) $: << File.expand_path(CURRENT_DIR + "/../lib") require 'xsd_populator'
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
xsd-populator-0.2.1 | spec/spec_helper.rb |