it('allows implementors to override built in methods', function () {
    function change () {}
    var store = baseStore({
      emitChange: change,
      handler: sandbox.spy()
    });

    expect(store.emitChange).to.eql(change);
  });
 beforeEach(function() {
   this.store = baseStore({handler: sandbox.spy()});
 });