Sha256: 2d7b86d54d74d68b25c91f56cffa0b08ca64796ea0cd53eeb4adc489b5b03b6f
Contents?: true
Size: 339 Bytes
Versions: 52
Compression:
Stored size: 339 Bytes
Contents
require File.expand_path('../../../../spec_helper', __FILE__) require 'set' describe "SortedSet#inspect" do it "returns a String representation of self" do SortedSet[].inspect.should be_kind_of(String) SortedSet[1, 2, 3].inspect.should be_kind_of(String) SortedSet["1", "2", "3"].inspect.should be_kind_of(String) end end
Version data entries
52 entries across 52 versions & 2 rubygems