spec/functional_spec.rb in cocoapods-keys-1.6.0 vs spec/functional_spec.rb in cocoapods-keys-1.6.1
- old
+ new
@@ -8,10 +8,12 @@
Dir.chdir(@tmpdir) do
FileUtils.mkdir('TestProject.xcodeproj')
File.open('Podfile', 'w') do |podfile|
podfile.puts <<-PODFILE
platform :ios, '7'
+ install! 'cocoapods', :integrate_targets => false
+
plugin 'cocoapods-keys', {
:project => 'TestProject',
:keys => [
'KeyWithData',
'AnotherKeyWithData',
@@ -23,10 +25,10 @@
end
system('pod keys set KeyWithData such-data --silent')
system('pod keys set AnotherKeyWithData other-data --silent')
system('pod keys set UnusedKey - --silent')
- system('pod install --silent --no-repo-update --no-integrate')
+ system('pod install --silent')
end
end
after :all do
KeyringLiberator.get_all_keyrings_named('TestProject').each do |keyring|