File: delete_at_spec.rb

package info (click to toggle)
ruby-hamster 3.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,932 kB
  • sloc: ruby: 16,915; makefile: 4
file content (19 lines) | stat: -rw-r--r-- 566 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require "spec_helper"
require "hamster/sorted_set"

describe Hamster::SortedSet do
  describe "#delete_at" do
    let(:sorted_set) { SS[1,2,3,4,5] }

    it "removes the element at the specified index" do
      sorted_set.delete_at(0).should  eql(SS[2,3,4,5])
      sorted_set.delete_at(2).should  eql(SS[1,2,4,5])
      sorted_set.delete_at(-1).should eql(SS[1,2,3,4])
    end

    it "makes no modification if the index is out of range" do
      sorted_set.delete_at(5).should eql(sorted_set)
      sorted_set.delete_at(-6).should eql(sorted_set)
    end
  end
end