Sha256: 61c96e71e463fc05331ce655d629819759b63e98223e36bfa4a33769c002ccf5
Contents?: true
Size: 746 Bytes
Versions: 2
Compression:
Stored size: 746 Bytes
Contents
# -*- coding: utf-8 -*- require "minitest/autorun" require "simplecov" SimpleCov.start require "sixarm_ruby_geometry/point/vector/d3" require "sixarm_ruby_geometry_test/fake" module Point module Vector module D3 class Test < Minitest::Test def test_0 assert(::Point::Vector::D3) end require "matrix" class C < ::Vector include ::Point::Vector::D3 end def test_new assert(C[0,0,0]) end def test_index e0 = fake_n e1 = fake_n e2 = fake_n c = C[e0, e1, e2] assert_equal(e0, c[0]) assert_equal(e1, c[1]) assert_equal(e2, c[2]) end 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/d3_test.rb |
sixarm_ruby_geometry-3.0.0 | test/sixarm_ruby_geometry_test/point/vector/d3_test.rb |