1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2025-05-03 04:47:07 +01:00

Update tests.

This commit is contained in:
devlinjd
2015-11-19 15:39:26 -05:00
parent 35b9f2b764
commit 0c1b1734ee
2 changed files with 21 additions and 15 deletions

View File

@ -24,8 +24,8 @@ FRESH to JSON Resume conversion routiens.
info: {
label: jrs.basics.label,
class: jrs.basics.label,
picture: jrs.basics.picture,
summary: jrs.basics.summary
image: jrs.basics.picture,
brief: jrs.basics.summary
},
contact: {
@ -39,9 +39,7 @@ FRESH to JSON Resume conversion routiens.
region: jrs.basics.location.region,
country: jrs.basics.location.countryCode,
code: jrs.basics.location.postalCode,
address: [
jrs.basics.location.address,
]
address: jrs.basics.location.address
},
employment: {
@ -132,7 +130,9 @@ FRESH to JSON Resume conversion routiens.
};
}),
interests: jrs.interests
interests: jrs.interests,
references: jrs.references
};
},
@ -145,11 +145,11 @@ FRESH to JSON Resume conversion routiens.
basics: {
name: fresh.name,
summary: fresh.info.summary,
summary: fresh.info.brief,
website: fresh.info.website,
phone: fresh.info.phone,
email: fresh.info.email,
picture: fresh.info.picture,
picture: fresh.info.image,
location: {
address: fresh.location.address.join('\n'),
postalCode: fresh.location.code,
@ -233,7 +233,9 @@ FRESH to JSON Resume conversion routiens.
};
}),
interests: fresh.interests
interests: fresh.interests,
references: fresh.references
};