# Check that sub project assets get compiled on reload
> playReload
$ exists target/web/public/main/main.css
$ exists module/target/web/public/main/module.css

# Check that they are mounted at the right place in the run classloader
> checkOnClasspath public/main.css
> checkOnClasspath public/lib/assets-module-sample/module.css

# Check that they are on the test classpath
> checkOnTestClasspath public/main.css
> checkOnTestClasspath public/lib/assets-module-sample/module.css

# Clean and ensure that it really did clean
> clean
-$ exists target/web/public/main/main.css
-$ exists module/target/web/public/main/module.css

# Check that sub project assets get compiled and included in the distribution when staged
> stage
> unzipAssetsJar
$ exists target/assetsJar/public/main.css
$ exists target/assetsJar/public/lib/assets-module-sample/module.css

# empty.txt was in both subproject and the main project, these end up under different namespaces
$ exists target/assetsJar/public/empty.txt
$ exists target/assetsJar/public/lib/assets-module-sample/empty.txt
