Sha256: d153c2b3282df69948f3f3fc5ac4fb3cf344d0037a1a07be7f102b08e3a42fe7
Contents?: true
Size: 552 Bytes
Versions: 1
Compression:
Stored size: 552 Bytes
Contents
# encoding: utf-8 require 'rubygems' require 'backports' require 'veritas' require 'spec' require 'spec/autorun' include Veritas # require spec support files and shared behavior Dir[File.expand_path('../{support,shared}/**/*.rb', __FILE__)].each { |f| require f } Spec::Runner.configure do |config| # Record the original Attribute descendants config.before do @original_descendants = Attribute.descendants.dup end # Reset the Attribute descendants config.after do Attribute.descendants.replace(@original_descendants) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
veritas-0.0.4 | spec/spec_helper.rb |