Skip to content

Instantly share code, notes, and snippets.

@kaiwren
Created March 16, 2015 21:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kaiwren/83235974a3fd61e5ce44 to your computer and use it in GitHub Desktop.
Save kaiwren/83235974a3fd61e5ce44 to your computer and use it in GitHub Desktop.
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)
require File.expand_path('../shared/clone', __FILE__)
describe "Array#clone" do
it_behaves_like :array_clone, :clone
it "copies frozen status from the original" do
a = [1, 2, 3, 4]
b = [1, 2, 3, 4]
a.freeze
aa = a.clone
bb = b.clone
aa.frozen?.should == true
bb.frozen?.should == false
end
it "copies singleton methods" do
a = [1, 2, 3, 4]
b = [1, 2, 3, 4]
def a.a_singleton_method; end
aa = a.clone
bb = b.clone
a.respond_to?(:a_singleton_method).should be_true
b.respond_to?(:a_singleton_method).should be_false
aa.respond_to?(:a_singleton_method).should be_true
bb.respond_to?(:a_singleton_method).should be_false
end
end
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)
require File.expand_path('../shared/clone', __FILE__)
describe "Array#dup" do
it_behaves_like :array_clone, :dup # FIX: no, clone and dup are not alike
it "does not copy frozen status from the original" do
a = [1, 2, 3, 4]
b = [1, 2, 3, 4]
a.freeze
aa = a.dup
bb = b.dup
aa.frozen?.should be_false
bb.frozen?.should be_false
end
it "does not copy singleton methods" do
a = [1, 2, 3, 4]
b = [1, 2, 3, 4]
def a.a_singleton_method; end
aa = a.dup
bb = b.dup
a.respond_to?(:a_singleton_method).should be_true
b.respond_to?(:a_singleton_method).should be_false
aa.respond_to?(:a_singleton_method).should be_false
bb.respond_to?(:a_singleton_method).should be_false
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment