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

Version Path
netica-0.0.21-java spec/spec_helper.rb
netica-1.0.0.pre-java spec/spec_helper.rb
netica-0.0.20-java spec/spec_helper.rb
netica-0.0.19-java spec/spec_helper.rb
netica-0.0.17-java spec/spec_helper.rb
netica-0.0.16-java spec/spec_helper.rb
netica-0.0.15-java spec/spec_helper.rb
netica-0.0.10-java spec/spec_helper.rb
netica-0.0.9-java spec/spec_helper.rb
netica-0.0.8-java spec/spec_helper.rb
netica-0.0.7-java spec/spec_helper.rb
netica-0.0.6-java spec/spec_helper.rb
netica-0.0.5-java spec/spec_helper.rb