2013-06-20 13:58:54 -04:00
|
|
|
function integration(name) {
|
2013-07-04 16:19:59 -04:00
|
|
|
module("Integration: " + name, {
|
2013-06-20 13:58:54 -04:00
|
|
|
setup: function() {
|
2013-06-20 14:29:59 -04:00
|
|
|
sinon.stub(Discourse.ScrollingDOMMethods, "bindOnScroll");
|
|
|
|
sinon.stub(Discourse.ScrollingDOMMethods, "unbindOnScroll");
|
2013-06-20 13:58:54 -04:00
|
|
|
Ember.run(Discourse, Discourse.advanceReadiness);
|
|
|
|
},
|
|
|
|
|
|
|
|
teardown: function() {
|
|
|
|
Discourse.reset();
|
2013-06-20 14:29:59 -04:00
|
|
|
Discourse.ScrollingDOMMethods.bindOnScroll.restore();
|
|
|
|
Discourse.ScrollingDOMMethods.unbindOnScroll.restore();
|
2013-06-20 13:58:54 -04:00
|
|
|
}
|
|
|
|
});
|
2013-06-20 17:20:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function controllerFor(controller, model) {
|
|
|
|
var controller = Discourse.__container__.lookup('controller:' + controller);
|
|
|
|
if (model) { controller.set('model', model ); }
|
|
|
|
return controller;
|
2013-07-15 19:47:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function asyncTestDiscourse(text, func) {
|
|
|
|
|
|
|
|
asyncTest(text, function () {
|
|
|
|
|
|
|
|
var qunitContext = this;
|
|
|
|
Ember.run(function () {
|
|
|
|
func.call(qunitContext);
|
|
|
|
});
|
|
|
|
});
|
2013-06-20 13:58:54 -04:00
|
|
|
}
|