1

在我的应用程序中,我想在我的 GooglePlaceRetriever 服务上测试一个类方法。我知道在 Ember-Cli 中进行测试时,我可以使用 this.subject() 来获取服务的实例,但我不确定如何访问实际的 GooglePlaceRetriever 对象本身来测试我的类方法。

import {
  moduleFor,
  test
} from 'ember-qunit';

moduleFor('service:google-place-retriever', 'GooglePlaceRetrieverService', {
  // Specify the other units that are required for this test.
  // needs: ['service:foo']
});

// Replace this with your real tests.
test('it exists', function() {
  var service = this.subject();
  ok(service);
});

test('fetches place details from Google and converts it to a location', function()
  //Cannot figure out how to access the Class as opposed to the instance.
  var location = ???.findByPlaceId('ChIJaeKPQD_zz4kRy4c8TvnwGIg');

  ok(location.get('name'), "My Name");
});
4

1 回答 1

1

您可以像这样访问用于测试的类方法:

var location = this.subject.constructor.findByPlaceId('whatever');

为什么是类方法呢?服务不应该被实例化吗?

于 2014-12-24T06:43:31.737 回答