-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add new workspaces for tests for different integrations #trivial #377
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
source 'https://github.com/CocoaPods/Specs.git' | ||
|
||
platform :ios, '8.0' | ||
target 'ASDKListKitTests' do | ||
pod 'Texture/IGListKit', :path => '../..' | ||
pod 'OCMock', '~> 3.4' | ||
pod 'JGMethodSwizzler', :git => 'https://github.com/JonasGessner/JGMethodSwizzler', :branch => 'master' | ||
end | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2266,12 +2266,10 @@ - (void)testThatItIsAllowedToRetrieveDebugDescriptionIncludingVCOffMainThread | |
UIViewController *vc = [[UIViewController alloc] init]; | ||
[vc.view addSubnode:node]; | ||
dispatch_group_t g = dispatch_group_create(); | ||
dispatch_group_enter(g); | ||
__block NSString *debugDescription; | ||
[NSThread detachNewThreadWithBlock:^{ | ||
dispatch_group_async(g, dispatch_get_global_queue(QOS_CLASS_DEFAULT, 0), ^{ | ||
debugDescription = [node debugDescription]; | ||
dispatch_group_leave(g); | ||
}]; | ||
}); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
dispatch_group_wait(g, DISPATCH_TIME_FOREVER); | ||
// Ensure the debug description contains the VC string. | ||
// Have to split into two lines because XCTAssert macro can't handle the stringWithFormat:. | ||
|
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since the post_install hook isn't associated with the target (i.e. you can only have one per file,) moved this to root.