about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--t/00-basic.rakutest12
-rw-r--r--t/01-hex2rgb.rakutest8
2 files changed, 20 insertions, 0 deletions
diff --git a/t/00-basic.rakutest b/t/00-basic.rakutest
new file mode 100644
index 0000000..0eb0ace
--- /dev/null
+++ b/t/00-basic.rakutest
@@ -0,0 +1,12 @@
+use Test;
+
+plan 8;
+
+use-ok 'Octans::CLI';
+use-ok 'Octans::Hex2RGB';
+use-ok 'Octans::Neighbors';
+use-ok 'Octans::WordSearch';
+use-ok 'Octans::Puzzle';
+use-ok 'Octans::Puzzle:Get';
+use-ok 'Octans::RangeSearch';
+use-ok 'Octans::GenerateFrame';
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";