summaryrefslogtreecommitdiff
path: root/test/matrix/test_matrix.rb
diff options
context:
space:
mode:
authormarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-04-11 18:50:51 +0000
committermarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-04-11 18:50:51 +0000
commit521f4a4beb1623cfc911ab07a9c5c37dd0dd8988 (patch)
tree7cd6ada92898e7ef7babae29f8a6dacee7c6d0bc /test/matrix/test_matrix.rb
parent3f64c83eb1b698b18ab9c71abc6815537485ef89 (diff)
* lib/matrix.rb: Deprecate Vector#elements_to{i/f/r}
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27313 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/matrix/test_matrix.rb')
-rw-r--r--test/matrix/test_matrix.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/matrix/test_matrix.rb b/test/matrix/test_matrix.rb
index 0beef462a2..c1996e6dd0 100644
--- a/test/matrix/test_matrix.rb
+++ b/test/matrix/test_matrix.rb
@@ -366,18 +366,6 @@ class TestMatrix < Test::Unit::TestCase
assert_equal([Vector[1,4], Vector[2,5], Vector[3,6]], @m1.column_vectors)
end
- def test_elements_to_f
- assert_equal(Matrix[[0.5,1.0,1.5],[2.0,2.5,3.0]], @m1.elements_to_f / 2)
- end
-
- def test_elements_to_i
- assert_equal(Matrix[[0,1,1],[2,2,3]], (@m1.elements_to_f / 2).elements_to_i)
- end
-
- def test_elements_to_r
- assert_equal(@m1.collect {|x| Rational(x, 2) }, @m1.elements_to_r / 2)
- end
-
def test_to_s
assert_equal("Matrix[[1, 2, 3], [4, 5, 6]]", @m1.to_s)
assert_equal("Matrix.empty(0, 0)", Matrix[].to_s)