Sha256: 40f63c4dbe7ccb8363b0a074bf219cd6d9a03724d7e6a17b6bb2bb14303563c6
Contents?: true
Size: 836 Bytes
Versions: 7
Compression:
Stored size: 836 Bytes
Contents
require File.expand_path('../../spec_helper', __FILE__) module Pod describe Command::Spec::Package do describe 'Subspecs' do after do Dir.glob("KFData-*").each { |dir| Pathname.new(dir).rmtree } end it 'can package a single subspec' do SourcesManager.stubs(:search).returns(nil) command = Command.parse(%w{ package spec/fixtures/KFData.podspec --subspecs=Core}) command.run true.should == true # To make the test pass without any shoulds end it 'can package a list of subspecs' do SourcesManager.stubs(:search).returns(nil) command = Command.parse(%w{ package spec/fixtures/KFData.podspec --subspecs=Core,Compatibility}) command.run true.should == true # To make the test pass without any shoulds end end end end
Version data entries
7 entries across 7 versions & 1 rubygems