Benjamin,
On Sun, Aug 28, 2011 at 2:23 AM, Benjamin Gehrels < [email protected]> wrote: > > great, will merge it in as soon as you send in the CLA, see > > http://wiki.neo4j.org/content/About_Contributor_License_Agreement > > pull request and CLA are crawling through the sea cables to sweden right > now. > > thanks, merged and pushed! > > For testing, we normally use the ImpermanentGraphDatabase which does > exactly > > this. It's not in RAM, but does the cleanup :) > > That one looks cool, maybe it's possible to move it from src/test/java > to src/main/java so it will be included into the distribution jars and > can be used outside the neo4j build infrastructure? > You can, since the tests are pushed as their own artifacts. Just depend on <dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j-kernel</artifactId> <version>${neo4j.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> And you will be able to use the goodness :) /peter _______________________________________________ Neo4j mailing list [email protected] https://lists.neo4j.org/mailman/listinfo/user

