diff options
author | Andinus <andinus@nand.sh> | 2022-01-12 12:46:51 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2022-01-12 12:46:51 +0530 |
commit | 35edc87d2f8482363a30a86df409b447a2d24695 (patch) | |
tree | 7df77997d7819be12664fa0ffac2f1f064a8c0f9 /t/01-hex2rgb.rakutest | |
parent | 76b0f392519912c0e7835e5cf75190ea5d650e77 (diff) | |
download | octans-35edc87d2f8482363a30a86df409b447a2d24695.tar.gz |
Add basic 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..313b957 --- /dev/null +++ b/t/01-hex2rgb.rakutest @@ -0,0 +1,8 @@ +use Test; +use Octans::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"; |