mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Guard ruby/spec with spec/mspec/tool/wrap_with_guard.rb
This commit is contained in:
parent
350bc29107
commit
835a495608
Notes:
git
2021-05-27 14:42:36 +09:00
164 changed files with 4474 additions and 3982 deletions
|
@ -1,18 +1,21 @@
|
|||
require_relative '../../../spec_helper'
|
||||
require 'matrix'
|
||||
|
||||
describe "Vector#normalize" do
|
||||
it "returns a normalized copy of the vector" do
|
||||
x = 0.2672612419124244
|
||||
Vector[1, 2, 3].normalize.should == Vector[x, x * 2, x * 3]
|
||||
end
|
||||
ruby_version_is ""..."3.1" do
|
||||
require 'matrix'
|
||||
|
||||
it "raises an error for zero vectors" do
|
||||
-> {
|
||||
Vector[].normalize
|
||||
}.should raise_error(Vector::ZeroVectorError)
|
||||
-> {
|
||||
Vector[0, 0, 0].normalize
|
||||
}.should raise_error(Vector::ZeroVectorError)
|
||||
describe "Vector#normalize" do
|
||||
it "returns a normalized copy of the vector" do
|
||||
x = 0.2672612419124244
|
||||
Vector[1, 2, 3].normalize.should == Vector[x, x * 2, x * 3]
|
||||
end
|
||||
|
||||
it "raises an error for zero vectors" do
|
||||
-> {
|
||||
Vector[].normalize
|
||||
}.should raise_error(Vector::ZeroVectorError)
|
||||
-> {
|
||||
Vector[0, 0, 0].normalize
|
||||
}.should raise_error(Vector::ZeroVectorError)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue