Skip to content
This repository has been archived by the owner on Dec 12, 2019. It is now read-only.

Commit

Permalink
Merge pull request #37 from chillpop/master
Browse files Browse the repository at this point in the history
Add test targets for tvOS and OSX
  • Loading branch information
brockboland committed Apr 14, 2016
2 parents 520aa7f + 2284848 commit b691647
Show file tree
Hide file tree
Showing 86 changed files with 6,280 additions and 961 deletions.
14 changes: 10 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
language: objective-c
osx_image: xcode7
xcode_workspace: Example/VOKMockUrlProtocol.xcworkspace
xcode_scheme: VOKMockUrlProtocol
xcode_sdk: iphonesimulator
osx_image: xcode7.3
before_install:
- brew update > /dev/null; if brew outdated | grep -qx xctool; then brew upgrade xctool; fi
xcode_workspace: Example/VOKMockUrlProtocol.xcworkspace
matrix:
include:
- xcode_scheme: VOKMockUrlProtocol
xcode_sdk: iphonesimulator
- xcode_scheme: VOKMockUrlProtocol-tvOS
xcode_sdk: appletvsimulator
- xcode_scheme: VOKMockUrlProtocol-OSX
xcode_sdk: macosx
12 changes: 11 additions & 1 deletion Example/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
source 'https://github.com/CocoaPods/Specs.git'

target 'Tests', :exclusive => true do
target 'Tests' do
pod "VOKMockUrlProtocol", :path => "../"
end

target 'Tests-tvOS' do
platform :tvos, '9.0'
pod "VOKMockUrlProtocol", :path => "../"
end

target 'Tests-OSX' do
platform :osx, '10.9'
pod "VOKMockUrlProtocol", :path => "../"
end
2 changes: 1 addition & 1 deletion Example/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
ILGHttpConstants: 715aca4c2b260527059242c0088abc748b52f98e
VOKBenkode: 272b78425bbeca87d0e2fc0809ffc041f88f8cd1
VOKMockUrlProtocol: 08cd1f6c9bbc7c8af96f08dcfa25977710785541
VOKMockUrlProtocol: ec55ad7b5dc8c759a65abf232e9e622f8b271bc2

COCOAPODS: 0.39.0

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Example/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b691647

Please sign in to comment.