xcknife 0.5.0 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,13 +0,0 @@
1
- require 'spec_helper'
2
-
3
- describe XCKnife::XCToolCmdHelper do
4
- include XCKnife::XCToolCmdHelper
5
-
6
- it "can compute the -only argument list for a single partition" do
7
- result = xctool_only_arguments(
8
- { "TargetOneOnPartition1" => ["TestClass1", "TestClassX"],
9
- "TargetTwoOnPartition1" => ["TestClassY"]
10
- })
11
- expect(result).to eq(%w[-only TargetOneOnPartition1:TestClass1,TestClassX -only TargetTwoOnPartition1:TestClassY])
12
- end
13
- end