Sha256: 602650df765a0cc60e2166fe1336ac7490665e9bd59ff459f0bf45505de60972
Contents?: true
Size: 914 Bytes
Versions: 1
Compression:
Stored size: 914 Bytes
Contents
require File.expand_path('../../spec_helper', __FILE__) module Pod describe Command::Spec::FanqiePackage do describe 'Subspecs' do after do Dir.glob("KFData-*").each { |dir| Pathname.new(dir).rmtree } end it 'can fanqie-package a single subspec' do Pod::Config.instance.sources_manager.stubs(:search).returns(nil) command = Command.parse(%w{ fanqie-package spec/fixtures/KFData.podspec --subspecs=Core}) command.run true.should == true # To make the test pass without any shoulds end it 'can fanqie-package a list of subspecs' do Pod::Config.instance.sources_manager.stubs(:search).returns(nil) command = Command.parse(%w{ fanqie-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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cocoapods-fanQiePackager-1.5.0.1 | spec/command/subspecs_spec.rb |