From 2a53f53d74167353cf434af59392c72a885cb7f6 Mon Sep 17 00:00:00 2001
From: Rob Landley <rob@landley.net>
Date: Fri, 1 Aug 2014 09:08:00 -0500
Subject: Add factor.

I was reading http://www.muppetlabs.com/~breadbox/txt/rsa.html and it mentioned
"factor" and I noticed it was in coreutils. I'm not sure why it's in coreutils,
but it's pretty trivial, so...
---
 scripts/test/factor.test | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100755 scripts/test/factor.test

(limited to 'scripts/test')

diff --git a/scripts/test/factor.test b/scripts/test/factor.test
new file mode 100755
index 00000000..a3e4cbf8
--- /dev/null
+++ b/scripts/test/factor.test
@@ -0,0 +1,18 @@
+#!/bin/bash
+
+[ -f testing.sh ] && . testing.sh
+
+#testing "name" "command" "result" "infile" "stdin"
+
+testing "factor -32" "factor -32" "-32: -1 2 2 2 2 2\n" "" ""
+testing "factor 0" "factor 0" "0: 0\n" "" ""
+testing "factor 1" "factor 1" "1: 1\n" "" ""
+testing "factor 2" "factor 2" "2: 2\n" "" ""
+testing "factor 3" "factor 3" "3: 3\n" "" ""
+testing "factor 4" "factor 4" "4: 2 2\n" "" ""
+testing "factor 10000000017" "factor 10000000017" \
+        "10000000017: 3 3 3 7 7 7 1079797\n" "" ""
+testing "factor 10000000018" "factor 10000000018" \
+        "10000000018: 2 131 521 73259\n" "" ""
+testing "factor 10000000019" "factor 10000000019" \
+        "10000000019: 10000000019\n" "" ""
-- 
cgit v1.2.3