Sha256: e8c82ee023dd8d72a61b25c93317cddc2faf6b040620e246fa64f8c5bd566421

Contents?: true

Size: 312 Bytes

Versions: 14

Compression:

Stored size: 312 Bytes

Contents

require 'simplecov'
SimpleCov.start

require 'rubygems'
require 'test/unit'

# Some helper utilities used in test classes

class Array
  # We need Array#add in test classes to be able to use Arrays as adjacency lists
  # This is needed to have ordered lists as neighbors in our test graphs.
  alias add push
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
rgl-0.6.6 test/test_helper.rb
rgl-0.6.5 test/test_helper.rb
rgl-0.6.4 test/test_helper.rb
rgl-0.6.3 test/test_helper.rb
rgl-0.6.2 test/test_helper.rb
rgl-0.6.1 test/test_helper.rb
rgl-0.6.0 test/test_helper.rb
rgl-0.5.10 test/test_helper.rb
rgl-0.5.9 test/test_helper.rb
rgl-0.5.8 test/test_helper.rb
rgl-0.5.7 test/test_helper.rb
rgl-0.5.6 test/test_helper.rb
rgl-0.5.4 test/test_helper.rb
rgl-0.5.3 test/test_helper.rb