public static WebArchive getDeployment()
{
return RewriteTest.getDeployment()
.addPackages(true, ConfigRoot.class.getPackage())
.addAsServiceProvider(ConfigurationProvider.class, ForwardEncodingProvider.class)
.addAsWebResource(new StringAsset("foobar"), "direct/static/foobar.txt")
.addAsWebResource(new StringAsset("spaces"), "direct/static/with spaces.txt")
.addAsWebResource(new StringAsset("hash"), "direct/static/with#hash.txt");
}