mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 05:52:58 +00:00
Removed CocoaHTTP server, KeePassHTTP Plugin will bring it's own server
Signed-off-by: michael starke <michael.starke@hicknhack-software.com>
This commit is contained in:
@@ -42,8 +42,8 @@
|
||||
KPKTree *tree = [[KPKTree alloc] initWithData:_data password:_password error:&error];
|
||||
XCTAssertNotNil(tree, @"Loading should result in a tree object");
|
||||
|
||||
XCTAssertTrue([tree.root.groups count] == 0, @"Tree contains just root group");
|
||||
XCTAssertTrue([tree.root.entries count] == 1, @"Tree has only one entry");
|
||||
XCTAssertEqual(tree.root.groups.count, 0, @"Tree contains just root group");
|
||||
XCTAssertEqual(tree.root.entries.count, 1, @"Tree has only one entry");
|
||||
}
|
||||
|
||||
- (void)testAutotypeLoading {
|
||||
@@ -55,6 +55,7 @@
|
||||
XCTAssertNotNil(tree, @"Tree shoud be loaded");
|
||||
KPKEntry *entry = tree.root.entries[0];
|
||||
XCTAssertNotNil(entry, @"Entry should be there");
|
||||
XCTFail(@"Uncomplete Test!");
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
Reference in New Issue
Block a user