summaryrefslogtreecommitdiff
path: root/test/matrix/test_vector.rb
diff options
context:
space:
mode:
authormarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-04-05 15:30:18 +0000
committermarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-04-05 15:30:18 +0000
commit634616d7f36c11c7cf0bdc5f74a1fd7f54f89020 (patch)
tree5d5bb4e0e395cdcdbe6e3429d684557ff007ad34 /test/matrix/test_vector.rb
parent500c78c610d9cde2f7a85755f8eb4105e5889ea4 (diff)
* test/matrix/test_vector.rb: Oups, removed another obsolete test
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27226 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/matrix/test_vector.rb')
-rw-r--r--test/matrix/test_vector.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/matrix/test_vector.rb b/test/matrix/test_vector.rb
index 9be54af4ea..4cc1404e8a 100644
--- a/test/matrix/test_vector.rb
+++ b/test/matrix/test_vector.rb
@@ -80,11 +80,6 @@ class TestVector < Test::Unit::TestCase
assert_equal(Vector[2.0,4.0,6.0], a)
end
- def test_compare_by
- assert(@v1.compare_by([1,2,3], :==))
- assert(!@v1.compare_by([1,2,3], :equal?))
- end
-
def test_mul
assert_equal(Vector[2,4,6], @v1 * 2)
assert_equal(Matrix[[1, 4, 9], [2, 8, 18], [3, 12, 27]], @v1 * Matrix[[1,4,9]])