File: average_spec.rb

package info (click to toggle)
ruby-powerpack 0.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 352 kB
  • sloc: ruby: 799; makefile: 3
file content (19 lines) | stat: -rw-r--r-- 452 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'spec_helper'

describe 'Enumerable#average' do
  it 'calculates the average of an enum' do
    expect((1..3).average).to eq(2)
  end

  it 'calculates the average of an array' do
    expect([1, 2, 3, 4].average).to eq(2.5)
  end

  it 'returns nil when invoked on an empty collection' do
    expect([].average).to be_nil
  end

  it 'returns default value when invoked on an empty collection' do
    expect([].average(0)).to be_zero
  end
end