diff options
Diffstat (limited to 'spec/rubyspec/library/matrix/coerce_spec.rb')
-rw-r--r-- | spec/rubyspec/library/matrix/coerce_spec.rb | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/spec/rubyspec/library/matrix/coerce_spec.rb b/spec/rubyspec/library/matrix/coerce_spec.rb deleted file mode 100644 index 6e653315a6..0000000000 --- a/spec/rubyspec/library/matrix/coerce_spec.rb +++ /dev/null @@ -1,10 +0,0 @@ -require File.expand_path('../../../spec_helper', __FILE__) -require 'matrix' - -describe "Matrix#coerce" do - it "needs to be reviewed for spec completeness" - - it "allows the division of fixnum by a Matrix " do - (1/Matrix[[0,1],[-1,0]]).should == Matrix[[0,-1],[1,0]] - end -end |