1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

lib/matrix: Add explicit coercion #to_matrix

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60857 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
marcandre 2017-11-20 02:18:12 +00:00
parent e33b1690d0
commit aa95a42190
3 changed files with 26 additions and 0 deletions

View file

@ -177,6 +177,10 @@ class TestVector < Test::Unit::TestCase
assert_equal("Vector[1, 2, 3]", @v1.to_s)
end
def test_to_matrix
assert_equal Matrix[[1], [2], [3]], @v1.to_matrix
end
def test_inspect
assert_equal("Vector[1, 2, 3]", @v1.inspect)
end