it("#setRotationRate calls #command with params", function() {
      sphero.setRotationRate(180, callback);
      expect(sphero.command).to.be.calledOnce;
      expect(sphero.command).to.be.calledWith(0x02, 0x03, [0xB4], callback);
    });