summaryrefslogtreecommitdiff
path: root/platform/ios/test/MGLAccountManagerTests.m
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ios/test/MGLAccountManagerTests.m')
-rw-r--r--platform/ios/test/MGLAccountManagerTests.m25
1 files changed, 0 insertions, 25 deletions
diff --git a/platform/ios/test/MGLAccountManagerTests.m b/platform/ios/test/MGLAccountManagerTests.m
deleted file mode 100644
index fd59de2fd5..0000000000
--- a/platform/ios/test/MGLAccountManagerTests.m
+++ /dev/null
@@ -1,25 +0,0 @@
-#import <XCTest/XCTest.h>
-#import <Mapbox/Mapbox.h>
-
-@interface MBXAccounts: NSObject
-@property (class, nonatomic, readonly) NSString *skuToken;
-@end
-
-@implementation MBXAccounts
-
-+ (NSString *)skuToken {
- return @"foo";
-}
-
-@end
-
-@interface MGLAccountManagerTests : XCTestCase
-@end
-
-@implementation MGLAccountManagerTests
-
-- (void)testSKU {
- XCTAssertTrue([[MGLAccountManager valueForKeyPath:@"skuToken"] isEqualToString:@"foo"]);
-}
-
-@end