Sha256: 71b5ef62ca36645bcfe47a4342f8270b6feed250a16a64a684143103c8c45b8a
Contents?: true
Size: 399 Bytes
Versions: 8
Compression:
Stored size: 399 Bytes
Contents
require 'spec_helper' describe Luggage do it "should have a VERSION constant" do subject.const_get('VERSION').should_not be_empty end include_context "factories" describe "::new" do it "proxies Luggage::Factory" do Luggage::Factory.should_receive(:new).with(:server => :foo, :authenticate => :bar) Luggage.new(:server => :foo, :authenticate => :bar) end end end
Version data entries
8 entries across 8 versions & 1 rubygems