Sha256: b426944f039e418637d60f7843989b026b8131d6583bbb33a6bedeb3419576a6

Contents?: true

Size: 585 Bytes

Versions: 1

Compression:

Stored size: 585 Bytes

Contents

# -*- coding: utf-8 -*-
require "sixarm_ruby_geometry_test"
require "sixarm_ruby_geometry/indexable/d2"
require "sixarm_ruby_geometry_test/fake"

module Indexable
  module D2
    class Test < Minitest::Test

      def test_0
        assert(::Indexable::D2)
      end

      require "matrix"
      class C < Vector
        include ::Indexable::D2
      end

      def test_new
        assert(C[0, 0])
      end

      def test_index
        e0 = fake_n
        e1 = fake_n
        c = C[e0, e1]
        assert_equal(e0, c[0])
        assert_equal(e1, c[1])
      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/d2_test.rb