orta / cocoapods-keys

A key value store for storing per-developer environment and application keys
MIT License
1.55k stars 92 forks source link

Generated pod requires iOS 8, tests target iOS 7, yet tests don't fail #182

Closed jcayzac closed 1 year ago

jcayzac commented 6 years ago

In spec/functional_spec.rb:

 11         podfile.puts <<-PODFILE
 12           platform :ios, '7'
 13           install! 'cocoapods', :integrate_targets => false
 14
 15           plugin 'cocoapods-keys', {
 16               :project => 'TestProject',
 17               :keys => [
 18                   'KeyWithData',
 19                   'AnotherKeyWithData',
 20                   # This is not included!
 21                   # 'UnusedKey'
 22               ]
 23           }
 24         PODFILE

I think the tests don't fail because they're not actually trying to integrate with the targets (which would fail).