From ad61c0387986660c92f20aaf474fb404d67c07a5 Mon Sep 17 00:00:00 2001 From: Andinus Date: Wed, 3 Nov 2021 23:13:52 +0530 Subject: Add tests --- t/00-basic.rakutest | 6 ++++++ t/01-hex2rgb.rakutest | 8 ++++++++ 2 files changed, 14 insertions(+) create mode 100644 t/00-basic.rakutest create mode 100644 t/01-hex2rgb.rakutest (limited to 't') diff --git a/t/00-basic.rakutest b/t/00-basic.rakutest new file mode 100644 index 0000000..a119847 --- /dev/null +++ b/t/00-basic.rakutest @@ -0,0 +1,6 @@ +use Test; + +plan 2; + +use-ok 'Fornax::CLI'; +use-ok 'Fornax::Hex2RGB'; 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"; -- cgit 1.4.1-2-gfad0