0

私は Django と Tastypie が提供する安らかな API を SessionAuthentication と DjangoAuthorization で保護しています。各 API テストの前に Jasmine に認証またはログイン ページを通過させるにはどうすればよいですか?

4

1 に答える 1

1

Jasmin is a unit test framework. In unit test you should test your units without the need of external dependencies. So you shouldn't run your unit test again a real API. Mock out your API with sinon server.

If you wanna run test with your real side and real API you should choose a integration test framework like Selenium or CapserJS

于 2013-05-15T08:35:27.233 に答える