Sha256: 89c2217ebbe8aacd79c0f2837d50dfe7e260eb9c6b4531bb84b72b698ebc72f5

Contents?: true

Size: 809 Bytes

Versions: 198

Compression:

Stored size: 809 Bytes

Contents

# frozen_string_literal: true

require 'eac_ruby_utils/patches/enumerator/stopped'

RSpec.describe ::Enumerator do
  let(:list) { %w[a b] }
  let(:instance) { list.each }

  it { expect(instance).to be_a(described_class) }
  it { expect(instance.peek).to eq('a') }
  it { expect(instance).to be_ongoing }
  it { expect(instance).not_to be_stopped }

  context 'with first next' do
    before { instance.next }

    it { expect(instance.peek).to eq('b') }
    it { expect(instance).to be_ongoing }
    it { expect(instance).not_to be_stopped }
  end

  context 'with last next' do
    before do
      instance.next
      instance.next
    end

    it { expect { instance.peek }.to raise_error(::StopIteration) }
    it { expect(instance).not_to be_ongoing }
    it { expect(instance).to be_stopped }
  end
end

Version data entries

198 entries across 198 versions & 3 rubygems

Version Path
avm-tools-0.85.1 vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/enumerator/stopped_spec.rb
avm-tools-0.85.0 vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/enumerator/stopped_spec.rb
ehbrs-tools-0.16.5 vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/enumerator/stopped_spec.rb
avm-tools-0.84.0 vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/enumerator/stopped_spec.rb
avm-tools-0.83.0 vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/enumerator/stopped_spec.rb
ehbrs-tools-0.16.4 vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/enumerator/stopped_spec.rb
avm-tools-0.82.1 vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/enumerator/stopped_spec.rb
avm-tools-0.82.0 vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/enumerator/stopped_spec.rb
avm-tools-0.81.0 vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/enumerator/stopped_spec.rb
ehbrs-tools-0.16.3 vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/enumerator/stopped_spec.rb
avm-tools-0.80.0 vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/enumerator/stopped_spec.rb
avm-tools-0.79.0 vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/enumerator/stopped_spec.rb
avm-tools-0.78.0 vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/enumerator/stopped_spec.rb
ehbrs-tools-0.16.2 vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/enumerator/stopped_spec.rb
avm-tools-0.77.0 vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/enumerator/stopped_spec.rb
ehbrs-tools-0.16.1 vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/enumerator/stopped_spec.rb
avm-tools-0.76.1 vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/enumerator/stopped_spec.rb
ehbrs-tools-0.16.0 vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/enumerator/stopped_spec.rb