Sha256: 4157fb77b9c8a1543e77963136341f196a8acf1b702912e766dae2e355c8f0fe

Contents?: true

Size: 449 Bytes

Versions: 2

Compression:

Stored size: 449 Bytes

Contents

require 'spec_helper'

describe Charger::Price do
  subject { Charger::Price.new }

  describe 'fields' do
    it { should respond_to :ending_quantity }
    it { should respond_to :starting_quantity }
    it { should respond_to :unit_price }
  end

  describe '#between_quantities?' do
    pending 'write these'
  end


  describe '#remaining_quantity' do
    pending 'write these'
  end


  describe '#total' do
    pending 'write these'
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
charger-0.2.0 spec/charger/price_spec.rb
charger-0.1.1 spec/charger/price_spec.rb