project.createOrUpdateFile(Path.fromPortableString("res/hello.txt"), new ByteArrayInputStream(
"goodbye, world".getBytes()));
assertThat("Dir not under content sync dir can not be exported",
new ContentResourceTester().test(contentProject.findMember("res"), "canBeExported", null, null), equalTo(false));
assertThat("File not under content sync dir can not be exported",
new ContentResourceTester().test(contentProject.findMember("res/hello.txt"), "canBeExported", null, null), equalTo(false));
}