it('should allow arguments to be in different orders', function(done) {
    dinject.call(function(bar, foo) {
      expect(foo).eql(1);
      expect(bar).eql(2);
      done();