Sha256: 0565dc40833707ec45732f56cc1e36d7db3760b1856e9cfce7f80231b25ead90

Contents?: true

Size: 338 Bytes

Versions: 2

Compression:

Stored size: 338 Bytes

Contents

require 'spec_helper'

describe EmaySoap do
  context '.client' do

    before(:all) do
      EmaySoap.setup do |c|
        c.cdkey = 'some-cd-key'
        c.key = 'hello'
        c.password = 'world'
      end
    end

    it 'create an EmaySoap::Client' do
      expect(EmaySoap.client).to be_kind_of EmaySoap::Client
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
emay_soap-0.0.2 spec/emay_soap_spec.rb
emay_soap-0.0.1 spec/emay_soap_spec.rb