it("#refillBank calls #command with params", function() {
      sphero.refillBank(0xAA, callback);
      expect(sphero.command).to.be.calledOnce;
      expect(sphero.command).to.be.calledWith(0x02, 0x48, [0xAA], callback);
    });