Sha256: b8887c8c7d7ffa99fb9931c68b42b1f2ffac0fec00e37110caf8abefdb83089d
Contents?: true
Size: 557 Bytes
Versions: 2
Compression:
Stored size: 557 Bytes
Contents
# -*- coding: utf-8 -*- require "minitest/autorun" require "simplecov" SimpleCov.start require "sixarm_ruby_geometry/point/vector" require "sixarm_ruby_geometry_test/fake" module Point module Vector class Test < Minitest::Test def test_0 assert(::Point::Vector) end require "matrix" class C < ::Vector include ::Point::Vector end def test_new assert(C[0]) end def test_index e0 = fake_n c = C[e0] assert_equal(e0, c[0]) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
sixarm_ruby_geometry-3.1.1 | test/sixarm_ruby_geometry_test/point/vector_test.rb |
sixarm_ruby_geometry-3.0.0 | test/sixarm_ruby_geometry_test/point/vector_test.rb |