it("converts to an RGB object at normal %", function() {
        device.color(0x6699cc, 0);
        var color = { red: 0x66, green: 0x99, blue: 0xcc };
        expect(rgb).to.be.calledWith(color);
      });