Add tests for single-file packages.
1 parent 946ea24 commit 810257e6dedc11a08978dfa68fa1c8aae7b2528b
@Sönke Ludwig Sönke Ludwig authored on 25 May 2016
Showing 4 changed files
View
11
test/issue103-single-file-package-json.d 0 → 100644
/+ dub.json: {
"name": "hello_world"
} +/
module hello;
 
void main()
{
import std.stdio : writeln;
writeln("Hello, World!");
}
View
13
test/issue103-single-file-package-w-dep.d 0 → 100644
/+ dub.sdl:
name "hello_world"
dependency "sourcelib-simple" path="1-sourceLib-simple"
+/
module hello;
 
import sourcelib.app;
 
void main()
{
entry();
}
View
test/issue103-single-file-package.d 0 → 100644
View
test/issue103-single-file-package.sh 0 → 100644