-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathKNMParametrizedTests.podspec
26 lines (22 loc) · 1.04 KB
/
KNMParametrizedTests.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Pod::Spec.new do |s|
s.name = "KNMParametrizedTests"
s.version = "0.1.1"
s.summary = "Support for parametrized test cases using the XCTest framework"
s.description = <<-DESC
KNMParametrizedTest adds support for parametrized test cases using
the XCTest framework.
Features include:
* Familiar syntax - parametrized tests are normal test methods
taking a parameter
* Support for scalar and struct parameters
DESC
s.homepage = "https://github.com/konoma/xctest-parametrized-tests"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Markus Gasser" => "[email protected]" }
s.ios.deployment_target = '7.0'
s.osx.deployment_target = '10.9'
s.source = { :git => "https://github.com/konoma/xctest-parametrized-tests.git", :tag => "0.1.1" }
s.source_files = 'Sources'
s.frameworks = 'Foundation', 'XCTest'
s.requires_arc = true
end