I am trying to test the Perl6::Maven web application by launching the full application (which is uses Bailador) and then accessing the pages using LWP::Simple.
Unfortunately so far I could not figure out how to launch an external program in the background or how to fork an exec ? I tried QX{"command &") but it waited till the command finished. I tried run(), but that insisted I pass each argument as a separate value my $p = run("/usr/bin/perl", "-V", :out); worked but my $p = run("/usr/bin/perl -V", :out); did not seem to work and I cannot pass & to the former. Gabor