Sha256: 7f74c4a400c5a884506884cc8ab23d8fb932c16cbd0d135856d2aeec38f0581b
Contents?: true
Size: 754 Bytes
Versions: 11
Compression:
Stored size: 754 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) # The CocoaPods namespace # module Pod describe Command::Plugins::List do extend SpecHelper::PluginsStubs before do UI.output = '' @command = Pod::Command::Plugins::List.new CLAide::ARGV.new [] end it 'registers itself' do Command.parse(%w(plugins list)). should.be.instance_of Command::Plugins::List end #--- Output printing it 'prints out all plugins' do stub_plugins_json_request @command.run UI.output.should.include('github.com/CocoaPods/cocoapods-fake-1') UI.output.should.include('github.com/CocoaPods/cocoapods-fake-2') UI.output.should.include('github.com/chneukirchen/bacon') end end end
Version data entries
11 entries across 11 versions & 2 rubygems