diff --git a/tests/hull.scad b/tests/hull.scad index 98bdb3f..50366d2 100644 --- a/tests/hull.scad +++ b/tests/hull.scad @@ -1,5 +1,5 @@ -include -include +include <../std.scad> +include <../hull.scad> testpoints_on_sphere = [ for(p = diff --git a/tests/polyhedra.scad b/tests/polyhedra.scad index 5f2bedb..3a77fbc 100644 --- a/tests/polyhedra.scad +++ b/tests/polyhedra.scad @@ -1,5 +1,5 @@ -include -include +include<../std.scad> +include<../polyhedra.scad> $fn=96; diff --git a/tests/test_affine.scad b/tests/test_affine.scad index a37153c..a759b56 100644 --- a/tests/test_affine.scad +++ b/tests/test_affine.scad @@ -1,4 +1,4 @@ -include +include <../std.scad> module test_ident() { diff --git a/tests/test_arrays.scad b/tests/test_arrays.scad index a9e2b38..756e433 100644 --- a/tests/test_arrays.scad +++ b/tests/test_arrays.scad @@ -1,4 +1,4 @@ -include +include <../std.scad> // List/Array Ops diff --git a/tests/test_common.scad b/tests/test_common.scad index ed97cae..fa6bdbd 100644 --- a/tests/test_common.scad +++ b/tests/test_common.scad @@ -1,4 +1,4 @@ -include +include <../std.scad> module test_typeof() { diff --git a/tests/test_coords.scad b/tests/test_coords.scad index 702a351..4b89c12 100644 --- a/tests/test_coords.scad +++ b/tests/test_coords.scad @@ -1,4 +1,4 @@ -include +include <../std.scad> module test_point2d() { diff --git a/tests/test_cubetruss.scad b/tests/test_cubetruss.scad index 9b71f0e..3c6965d 100644 --- a/tests/test_cubetruss.scad +++ b/tests/test_cubetruss.scad @@ -1,5 +1,5 @@ -include -include +include <../std.scad> +include <../cubetruss.scad> module test_cubetruss_dist() { diff --git a/tests/test_debug.scad b/tests/test_debug.scad index 8c30564..b6351c5 100644 --- a/tests/test_debug.scad +++ b/tests/test_debug.scad @@ -1,4 +1,4 @@ -include +include <../std.scad> module test_standard_anchors() { diff --git a/tests/test_edges.scad b/tests/test_edges.scad index 047c1f9..0b755d6 100644 --- a/tests/test_edges.scad +++ b/tests/test_edges.scad @@ -1,4 +1,4 @@ -include +include <../std.scad> module test_is_edge_array() { diff --git a/tests/test_errors.scad b/tests/test_errors.scad index ba82755..fffe9eb 100644 --- a/tests/test_errors.scad +++ b/tests/test_errors.scad @@ -1,4 +1,4 @@ -include +include <../std.scad> // Can't test echo output as yet. Include these for coverage calculations. diff --git a/tests/test_geometry.scad b/tests/test_geometry.scad index dca4069..92b9f16 100644 --- a/tests/test_geometry.scad +++ b/tests/test_geometry.scad @@ -1,4 +1,4 @@ -include +include <../std.scad> module test_point_on_segment2d() { diff --git a/tests/test_linear_bearings.scad b/tests/test_linear_bearings.scad index 19bc2f5..fb57ba5 100644 --- a/tests/test_linear_bearings.scad +++ b/tests/test_linear_bearings.scad @@ -1,5 +1,5 @@ -include -include +include <../std.scad> +include <../linear_bearings.scad> module test_get_lmXuu_bearing_diam() { diff --git a/tests/test_math.scad b/tests/test_math.scad index 8b34da7..3233e6f 100644 --- a/tests/test_math.scad +++ b/tests/test_math.scad @@ -1,4 +1,4 @@ -include +include <../std.scad> // Simple Calculations diff --git a/tests/test_mutators.scad b/tests/test_mutators.scad index 5854b52..7361434 100644 --- a/tests/test_mutators.scad +++ b/tests/test_mutators.scad @@ -1,4 +1,4 @@ -include +include <../std.scad> module test_HSL() { diff --git a/tests/test_primitives.scad b/tests/test_primitives.scad index 8780b5b..e903617 100644 --- a/tests/test_primitives.scad +++ b/tests/test_primitives.scad @@ -1,4 +1,4 @@ -include +include <../std.scad> module test_square() { diff --git a/tests/test_quaternions.scad b/tests/test_quaternions.scad index 7a66d25..b1e5130 100644 --- a/tests/test_quaternions.scad +++ b/tests/test_quaternions.scad @@ -1,5 +1,5 @@ -include -include +include <../std.scad> +include <../strings.scad> function rec_cmp(a,b,eps=1e-9) = diff --git a/tests/test_queues.scad b/tests/test_queues.scad index cf45eef..4ce3c8c 100644 --- a/tests/test_queues.scad +++ b/tests/test_queues.scad @@ -1,5 +1,5 @@ -include -include +include <../std.scad> +include <../queues.scad> module test_queue_init() { diff --git a/tests/test_shapes.scad b/tests/test_shapes.scad index 0b66d60..ec1d58b 100644 --- a/tests/test_shapes.scad +++ b/tests/test_shapes.scad @@ -1,5 +1,5 @@ -include -include +include <../std.scad> +include <../hull.scad> module test_prismoid() { diff --git a/tests/test_shapes2d.scad b/tests/test_shapes2d.scad index dc8e874..1ee5ffa 100644 --- a/tests/test_shapes2d.scad +++ b/tests/test_shapes2d.scad @@ -1,4 +1,4 @@ -include +include <../std.scad> module test_turtle() { diff --git a/tests/test_skin.scad b/tests/test_skin.scad index 347ccd2..c4a231d 100644 --- a/tests/test_skin.scad +++ b/tests/test_skin.scad @@ -1,5 +1,5 @@ -include -include +include <../std.scad> +include <../skin.scad> module test_skin() { diff --git a/tests/test_stacks.scad b/tests/test_stacks.scad index 3f3f0d2..7241203 100644 --- a/tests/test_stacks.scad +++ b/tests/test_stacks.scad @@ -1,5 +1,5 @@ -include -include +include <../std.scad> +include <../stacks.scad> module test_stack_init() { diff --git a/tests/test_strings.scad b/tests/test_strings.scad index 673e8f0..a1d05d6 100644 --- a/tests/test_strings.scad +++ b/tests/test_strings.scad @@ -1,5 +1,5 @@ -include -include +include <../std.scad> +include <../strings.scad> module test_upcase() { diff --git a/tests/test_structs.scad b/tests/test_structs.scad index 55db3b4..a4a4d92 100644 --- a/tests/test_structs.scad +++ b/tests/test_structs.scad @@ -1,5 +1,5 @@ -include -include +include <../std.scad> +include <../structs.scad> module test_struct_set() { diff --git a/tests/test_transforms.scad b/tests/test_transforms.scad index 722b65e..a44e47c 100644 --- a/tests/test_transforms.scad +++ b/tests/test_transforms.scad @@ -1,4 +1,4 @@ -include +include <../std.scad> module test_translate() { diff --git a/tests/test_vectors.scad b/tests/test_vectors.scad index 6651c46..42f0a04 100644 --- a/tests/test_vectors.scad +++ b/tests/test_vectors.scad @@ -1,4 +1,4 @@ -include +include <../std.scad> module test_is_vector() { @@ -60,7 +60,7 @@ module test_vabs() { } test_vabs(); -include +include <../strings.scad> module test_vang() { assert(vang([1,0])==0); assert(vang([0,1])==90); diff --git a/tests/test_version.scad b/tests/test_version.scad index f877b5c..e82f13f 100644 --- a/tests/test_version.scad +++ b/tests/test_version.scad @@ -1,4 +1,4 @@ -include +include <../std.scad> module test_bosl_version() { diff --git a/tests/test_vnf.scad b/tests/test_vnf.scad index 65d5350..753803c 100644 --- a/tests/test_vnf.scad +++ b/tests/test_vnf.scad @@ -1,5 +1,5 @@ -include -include +include <../std.scad> +include <../vnf.scad> module test_is_vnf() {