Skip subclass spec with SortedSet

This commit is contained in:
Hiroshi SHIBATA 2020-12-04 19:36:30 +09:00
Родитель b06ffce4ae
Коммит e666bd1c5a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: F9CF13417264FAC2
1 изменённых файлов: 6 добавлений и 4 удалений

Просмотреть файл

@ -7,10 +7,12 @@ describe "Enumerable#to_set" do
{a: 1, b: 2}.to_set.should == Set[[:b, 2], [:a, 1]]
end
it "allows passing an alternate class for Set" do
sorted_set = [1, 2, 3].to_set(SortedSet)
sorted_set.should == SortedSet[1, 2, 3]
sorted_set.instance_of?(SortedSet).should == true
ruby_version_is ''...'3.0' do
it "allows passing an alternate class for Set" do
sorted_set = [1, 2, 3].to_set(SortedSet)
sorted_set.should == SortedSet[1, 2, 3]
sorted_set.instance_of?(SortedSet).should == true
end
end
it "passes down passed blocks" do