Sha256: 5810226194f891acd964d00d3f87cd21dc5b4d215b6e2f1419a2341f0a184711

Contents?: true

Size: 884 Bytes

Versions: 1

Compression:

Stored size: 884 Bytes

Contents

// ==========================================================================
// Project:   TestRunner.testsController
// Copyright: ©2009 Apple 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

1 entries across 1 versions & 1 rubygems

Version Path
sproutit-sproutcore-1.0.20090721145285 frameworks/sproutcore/apps/tests/controllers/tests.js