Add test for issue #66.

This commit is contained in:
Sönke Ludwig 2018-03-06 23:39:57 +01:00
parent eb046e2295
commit c88964337a

View file

@ -0,0 +1,19 @@
/+ dub.sdl:
name "tests"
dependency "vibe-core" path=".."
+/
module tests;
import vibe.core.core;
void main()
{
bool visited = false;
runTask({
yield();
visited = true;
exitEventLoop();
});
runApplication();
assert(visited);
}