aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/library/matrix/lup_decomposition/initialize_spec.rb
blob: 953389083fe0bdf67da03065166f33c53c8ee400 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require File.expand_path('../../../../spec_helper', __FILE__)
require 'matrix'

describe "Matrix::LUPDecomposition#initialize" do
  it "raises an error if argument is not a matrix" do
    lambda {
      Matrix::LUPDecomposition.new([[]])
    }.should raise_error(TypeError)
    lambda {
      Matrix::LUPDecomposition.new(42)
    }.should raise_error(TypeError)
  end
end