Sha256: d6e3a22b119fe5437cf868ca75e65afb43ed56b8b621cc657f206a978b986617

Contents?: true

Size: 912 Bytes

Versions: 1

Compression:

Stored size: 912 Bytes

Contents

# frozen_string_literal: true

require 'helpers'

describe GamesDice::Dice do
  describe 'dice scheme' do
    before :each do
      srand(67_809)
    end

    describe '1d10+2' do
      let(:dice) { GamesDice::Dice.new([{ sides: 10, ndice: 1 }], 2) }

      it 'should simulate rolling a ten-sided die, and adding two to each result' do
        [5, 4, 10, 10, 7, 5, 9].each do |expected_total|
          expect(dice.roll).to eql expected_total
          expect(dice.result).to eql expected_total
        end
      end
    end

    describe '2d6+6' do
      let(:dice) { GamesDice::Dice.new([{ sides: 6, ndice: 2 }], 6) }

      it 'should simulate rolling two six-sided dice and adding six to the result' do
        [15, 12, 17, 15, 13, 13, 16].each do |expected_total|
          expect(dice.roll).to eql expected_total
          expect(dice.result).to eql expected_total
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
games_dice-0.4.0 spec/dice_spec.rb