curious what people do about setting up test data? can-fixture seems to be tuned to ajax calls. But what about for non-ajax functions. For example, I am writing a unit test for a post-processing function, so it's not making the ajax call, rather it gets passed the response data (or a portion thereof). Is just using a direct call to store.get recommended? Or is there a better way?
also I have noticed that you (I think it's you) have been using mocha. So far I have just used qunit since it's the default and I am used to that style from other languages. What do you find preferential about mocha?