Sha256: 571f6b45471f47cdb99fe42ff97df33b8b5f1339c9175d128af767c375bf1894

Contents?: true

Size: 890 Bytes

Versions: 9

Compression:

Stored size: 890 Bytes

Contents

// ==========================================================================
// Project:   TestRunner.testsController
// Copyright: ©2009 My Company, Inc.
// ==========================================================================
/*globals TestRunner */

/** @class

  Manages the list of tests for the currently focused target.

  @extends SC.ArrayController
*/
TestRunner.testsController = SC.ArrayController.create(
/** @scope TestRunner.testsController.prototype */ {

  contentBinding: "TestRunner.targetController.tests",
  
  /**
    Enables/disables continuous integration mode.
  */
  useContinuousIntegration: NO,
  
  /**
    Whenever we are actually showing the tests, then controls are enabled.
    Set to YES when in READY_LIST mode.
  */
  isShowingTests: YES,
  
  stateDidChange: function() {
    TestRunner.sendAction('testsDidChange');
  }.observes('state')
  
}) ;

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
sproutit-sproutcore-1.0.0.20090720093355 frameworks/sproutcore/apps/tests/controllers/tests.js
sproutit-sproutcore-1.0.0.20090720202429 frameworks/sproutcore/apps/tests/controllers/tests.js
sproutit-sproutcore-1.0.0.20090721125122 frameworks/sproutcore/apps/tests/controllers/tests.js
sproutit-sproutcore-1.0.126 frameworks/sproutcore/apps/tests/controllers/tests.js
sproutit-sproutcore-1.0.20090721145251 frameworks/sproutcore/apps/tests/controllers/tests.js
sproutit-sproutcore-1.0.20090721145280 frameworks/sproutcore/apps/tests/controllers/tests.js
sproutit-sproutcore-1.0.20090721145281 frameworks/sproutcore/apps/tests/controllers/tests.js
sproutit-sproutcore-1.0.20090721145282 frameworks/sproutcore/apps/tests/controllers/tests.js
sproutit-sproutcore-1.0.203 frameworks/sproutcore/apps/tests/controllers/tests.js