Sha256: e40f19194586db22b61b527cad58ef2065cffee71151cd1872f12512e3f3127d
Contents?: true
Size: 527 Bytes
Versions: 1
Compression:
Stored size: 527 Bytes
Contents
# -*- coding: utf-8 -*- require "sixarm_ruby_geometry_test" require "sixarm_ruby_geometry/indexable/d1" require "sixarm_ruby_geometry_test/fake" module Indexable module D1 class Test < Minitest::Test def test_0 assert(::Indexable::D1) end require "matrix" class C < Vector include ::Indexable::D1 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sixarm_ruby_geometry-4.0.0 | test/sixarm_ruby_geometry_test/indexable/d1_test.rb |