it("converts to an RGB object at +20%", function() {
        device.color(0x6699cc, .2);
        var color = { red: 0x7a, green: 0xb8, blue: 0xf5 };
        expect(rgb).to.be.calledWith(color);
      });