We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f589906 + 7d692f9 commit f814eadCopy full SHA for f814ead
test/pbxProject.js
@@ -24,7 +24,18 @@ exports['parseSync function'] = {
24
, projHash = myProj.parseSync();
25
test.ok(projHash);
26
test.done();
27
- }
+ },
28
+ 'should contain valid data in the returned objects hash': function (test) {
29
+ var myProj = new pbx('test/parser/projects/hash.pbxproj')
30
+ , projHash = myProj.parseSync();
31
+ test.ok(projHash);
32
+
33
+ test.equal(projHash.hash.project.archiveVersion, 1);
34
+ test.equal(projHash.hash.project.objectVersion, 45);
35
+ test.equal(projHash.hash.project.nonObject, '29B97313FDCFA39411CA2CEF');
36
37
+ test.done();
38
39
}
40
41
exports['parse function'] = {
0 commit comments