Sha256: 090f7cd888f726123c52b9a94a137ee4e141e8ad2059c38b31d9a70d248dca3e
Contents?: true
Size: 475 Bytes
Versions: 52
Compression:
Stored size: 475 Bytes
Contents
require File.expand_path('../../../../spec_helper', __FILE__) require 'set' describe "SortedSet#initialize_copy" do before(:each) do @set = SortedSet[1, 2, 3] end it "is private" do Set.should have_private_instance_method(:initialize_copy) end it "replaces all elements of self with the elements of the passed SortedSet" do other = SortedSet["1", "2", "3"] @set.send(:initialize_copy, other) @set.should == SortedSet["1", "2", "3"] end end
Version data entries
52 entries across 52 versions & 2 rubygems