Simple testcase:

-(void) testSaveNSArrayWithNSNull {
    NSMutableArray *users = [NSMutableArray array];

    [users addObject:@{@"id": @"0", @"name": [NSNull null]}];
    [users addObject:@{@"id": @"1", @"name": @"Mark"}];
    [users addObject:@{@"id": @"2", @"name": @"John"}];
    

    AGPropertyListStorage *plistStore = [AGPropertyListStorage storeWithConfig:_config];
    NSError *error;
    BOOL success = [plistStore save:users error:&error];
    STAssertTrue(success, @"save should have succeeded");
}
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira