mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
8 lines
175 B
Ruby
8 lines
175 B
Ruby
|
require File.expand_path('../../../spec_helper', __FILE__)
|
||
|
|
||
|
describe :complex_I, shared: true do
|
||
|
it "is Complex(0, 1)" do
|
||
|
Complex::I.should eql(Complex(0, 1))
|
||
|
end
|
||
|
end
|