it("should replace a context with a new resource and reqExp", function(done) {
function rqInContext(x, callback) {
require([x], function(x) {
callback(x);
});
}
rqInContext("replaced", function(r) {
r.should.be.eql("ok");
done();