mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
8 lines
145 B
Ruby
8 lines
145 B
Ruby
require_relative '../../spec_helper'
|
|
|
|
describe "Float#dup" do
|
|
it "returns self" do
|
|
float = 2.4
|
|
float.dup.should equal(float)
|
|
end
|
|
end
|