1 // ==========================================================================
  2 // Project:   Test
  3 // Copyright: @2011 My Company, Inc.
  4 // ==========================================================================
  5 /*globals Test */
  6 
  7 /**
  8 
  9   My cool new app.  Describe your application.
 10 
 11   @extends SC.Object
 12 */
 13 Test = SC.Application.create(
 14   /** @scope Test.prototype */ {
 15 
 16   NAMESPACE: 'Test',
 17   VERSION: '0.1.0',
 18 
 19   store: SC.Store.create().from(SC.Record.fixtures),
 20 
 21   MODE_FOO: 0,
 22 
 23   MODE_BAR: 1
 24 
 25 }) ;
 26