Sha256: d316435df1816436b4d07c4e4e8768f90820d4769343113477ab244c526b206d

Contents?: true

Size: 329 Bytes

Versions: 30

Compression:

Stored size: 329 Bytes

Contents

module('CoreQuery.stubMethod');

test('returns a set value when the stubbed method is called', function() {
  var object = {method: function() {}};
  var value = 'something';
  CoreTest.stubMethod(object, 'method').andReturn(value);

  equals(object.method(), value, 'returns a set value when the stubbed method is called');
});

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
sproutcore-1.11.0 lib/frameworks/sproutcore/frameworks/testing/tests/stub_method.js
sproutcore-1.11.0.rc3 lib/frameworks/sproutcore/frameworks/testing/tests/stub_method.js
sproutcore-1.11.0.rc2 lib/frameworks/sproutcore/frameworks/testing/tests/stub_method.js
sproutcore-1.11.0.rc1 lib/frameworks/sproutcore/frameworks/testing/tests/stub_method.js
sproutcore-1.10.3.1 lib/frameworks/sproutcore/frameworks/testing/tests/stub_method.js
sproutcore-1.10.2 lib/frameworks/sproutcore/frameworks/testing/tests/stub_method.js
sproutcore-1.10.1 lib/frameworks/sproutcore/frameworks/testing/tests/stub_method.js
sproutcore-1.10.0 lib/frameworks/sproutcore/frameworks/testing/tests/stub_method.js
sproutcore-1.10.0.rc.3 lib/frameworks/sproutcore/frameworks/testing/tests/stub_method.js
sproutcore-1.10.0.rc.2 lib/frameworks/sproutcore/frameworks/testing/tests/stub_method.js
sproutcore-1.10.0.rc.1 lib/frameworks/sproutcore/frameworks/testing/tests/stub_method.js
sproutcore-1.9.2 lib/frameworks/sproutcore/frameworks/testing/tests/stub_method.js
sproutcore-1.9.1 lib/frameworks/sproutcore/frameworks/testing/tests/stub_method.js
sproutcore-1.9.0 lib/frameworks/sproutcore/frameworks/testing/tests/stub_method.js
sproutcore-1.8.2.1 lib/frameworks/sproutcore/frameworks/testing/tests/stub_method.js
sproutcore-1.8.1 lib/frameworks/sproutcore/frameworks/testing/tests/stub_method.js
sproutcore-1.8.0 lib/frameworks/sproutcore/frameworks/testing/tests/stub_method.js
sproutcore-1.7.1.beta-java lib/frameworks/sproutcore/frameworks/testing/tests/stub_method.js
sproutcore-1.7.1.beta lib/frameworks/sproutcore/frameworks/testing/tests/stub_method.js
sproutcore-1.6.0.1-java lib/frameworks/sproutcore/frameworks/testing/tests/stub_method.js