it("converts 'FF00FF' to an RGB object", function() {
        device.color("FF0000");
        var color = { red: 255, blue: 0, green: 0 };
        expect(rgb).to.be.calledWith(color);
      });