Sha256: fc97341211173a13761ebd702733d644bc112a3170d4181b51d6173d7a43b84d

Contents?: true

Size: 517 Bytes

Versions: 3

Compression:

Stored size: 517 Bytes

Contents

require 'spec_helper'

describe Momm do
  context "Calculator delegation" do
    it "should respond to exchange_rate" do
      Momm.should respond_to :exchange_rate
    end

    it "should respond to exchange" do
      Momm.should respond_to :exchange
    end

    it "should respond to exchange_from_gbp_to_usd" do
      Momm.should respond_to :exchange_from_gbp_to_usd
    end

    it "should respond to exchange_rate_from_gbp_to_usd" do
      Momm.should respond_to :exchange_rate_from_gbp_to_usd
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
momm-0.0.3 spec/momm/momm_spec.rb
momm-0.0.2 spec/momm/momm_spec.rb
momm-0.0.1 spec/momm/momm_spec.rb