diff options
author | Andinus <andinus@nand.sh> | 2021-11-03 23:13:52 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2021-11-03 23:13:52 +0530 |
commit | ad61c0387986660c92f20aaf474fb404d67c07a5 (patch) | |
tree | ab4ddd4a32b9c8c6d24327cf2835d14a70da98e2 /t/01-hex2rgb.rakutest | |
parent | f82aa5441c24b3c2f08b019bd2b04e02d845fa41 (diff) | |
download | fornax-ad61c0387986660c92f20aaf474fb404d67c07a5.tar.gz |
Add tests
Diffstat (limited to 't/01-hex2rgb.rakutest')
-rw-r--r-- | t/01-hex2rgb.rakutest | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/t/01-hex2rgb.rakutest b/t/01-hex2rgb.rakutest new file mode 100644 index 0000000..ca8bd59 --- /dev/null +++ b/t/01-hex2rgb.rakutest @@ -0,0 +1,8 @@ +use Test; +use Fornax::Hex2RGB; + +plan 3; + +is hex2rgb("#000000"), (0, 0, 0), "#000000"; +is hex2rgb("#b753db"), (183, 83, 219).map(* / 255), "#b753db"; +is hex2rgb("#ffffff"), (1, 1, 1), "#ffffff"; |