Sha256: bc726cfab109192a049076b4b4e436141b9b4cf2cc0595fb7c70afd8eb9db4f5
Contents?: true
Size: 381 Bytes
Versions: 13
Compression:
Stored size: 381 Bytes
Contents
$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) require 'netica' RSpec.configure do |config| config.color_enabled = true config.formatter = 'progress' end RSpec::Matchers.define :be_less_than do |expected| match do |actual| actual<expected end end RSpec::Matchers.define :be_greater_than do |expected| match do |actual| actual>expected end end
Version data entries
13 entries across 13 versions & 1 rubygems