10 lines
180 B
Mathematica
10 lines
180 B
Mathematica
|
#import "NSProcessInfo+WMFTestEnvironment.h"
|
||
|
|
||
|
@implementation NSProcessInfo (WMFTestEnvironment)
|
||
|
|
||
|
- (BOOL)wmf_isTravis {
|
||
|
return self.environment[@"TRAVIS"].length > 0;
|
||
|
}
|
||
|
|
||
|
@end
|