AFNetworking/Rakefile

17 lines
499 B
Text
Raw Normal View History

namespace :test do
desc "Run the AFNetworking Tests for iOS"
task :ios do
2013-05-11 13:24:41 -04:00
system("xctool -workspace AFNetworking.xcworkspace -scheme 'iOS Tests' test -test-sdk iphonesimulator")
end
desc "Run the AFNetworking Tests for Mac OS X"
task :osx do
2013-05-11 13:24:41 -04:00
system("xctool -workspace AFNetworking.xcworkspace -scheme 'OS X Tests' test -test-sdk macosx -sdk macosx")
end
end
2013-05-11 13:24:41 -04:00
desc "Run the AFNetworking Tests for iOS & Mac OS X"
task :test => ['test:ios', 'test:osx']
task :default => 'test'