Skip to content

Instantly share code, notes, and snippets.

@erichocean
Created July 23, 2008 00:02
Show Gist options
  • Save erichocean/1396 to your computer and use it in GitHub Desktop.
Save erichocean/1396 to your computer and use it in GitHub Desktop.
// ==========================================================================
// Ring.Contact Fixtures
// ==========================================================================
require('core') ;
Ring.FIXTURES = Ring.FIXTURES.concat([
// TODO: Add your data fixtures here.
// All fixture records must have a unique guid and a type matching the
// name of your contact. See the example below.
{ guid: 1,
type: 'Contact',
firstName: "Michael",
lastName: "Scott"
},
{ guid: 2,
type: 'Contact',
firstName: "Dwight",
lastName: "Schrute"
},
{ guid: 3,
type: 'Contact',
firstName: "Jim",
lastName: "Halpert"
},
{ guid: 4,
type: 'Contact',
firstName: "Pam",
lastName: "Beesly"
},
{ guid: 5,
type: 'Contact',
firstName: "Ryan",
lastName: "Howard"
}
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment