mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-01-17 22:28:16 +01:00
10 lines
188 B
OpenSCAD
10 lines
188 B
OpenSCAD
use <unittest.scad>;
|
|
use <util/fibseq.scad>;
|
|
|
|
module test_fibseq() {
|
|
echo("==== test fibseq ====");
|
|
|
|
assert([1, 1, 2, 3, 5, 8, 13, 21, 34, 55] == fibseq(1, 10));
|
|
}
|
|
|
|
test_fibseq(); |