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