Added test for #181

export-menu
Marius Kintel 2014-02-10 02:18:50 -05:00
parent 3ce44e92a4
commit e4daa42cf6
4 changed files with 18 additions and 0 deletions

View File

@ -135,3 +135,11 @@ o Verify that you get:
- WARNING: Failed to compile library '.../error.scad'.
- Main file should keep compiling
o Verify that the above doesn't repeat
Test 16: Dependency tracking of underlying dependencies
--------
o Turn on Automatic Reload and Compile
o Open mainsubsub.scad
o Verify that you see a red cylinder
o edit subdit/subsub.scad: Change color
o Verify that color changes

View File

@ -0,0 +1,2 @@
use <subdir/sub.scad>
sub();

View File

@ -0,0 +1,5 @@
use <subsub.scad>
module sub() {
subsub();
}

View File

@ -0,0 +1,3 @@
module subsub() {
color("red") cylinder(r = 10, h = 5);
}