/ test / util / test_fibseq.scad
test_fibseq.scad
1  use <util/fibseq.scad>
2  
3  module test_fibseq() {
4      echo("==== test fibseq ====");
5  
6      assert([1, 1, 2, 3, 5, 8, 13, 21, 34, 55] == fibseq(1, 10)); 
7  }
8  
9  test_fibseq();