database_cleaner/adapters/database_cleaner-neo4j
Micah Geisel 0178309284 release v1.99.0. 2021-01-31 15:12:15 -08:00
..
bin test all adapters in travis run. 2018-11-20 21:01:55 -08:00
lib release v1.99.0. 2021-01-31 15:12:15 -08:00
spec add .default_strategy method to all adapters, and move knowledge into it from core. 2019-12-12 00:22:29 -08:00
.gitignore extract database_cleaner-neo4j adapter. 2018-11-20 21:01:52 -08:00
.rspec extract database_cleaner-neo4j adapter. 2018-11-20 21:01:52 -08:00
.travis.yml CI: adapters, drop sudo: false 2020-01-31 00:38:47 -06:00
Gemfile extract database_cleaner-neo4j adapter. 2018-11-20 21:01:52 -08:00
Gemfile.lock release v1.99.0. 2021-01-31 15:12:15 -08:00
LICENSE.txt extract database_cleaner-neo4j adapter. 2018-11-20 21:01:52 -08:00
README.md deprecate :connection and :model orm configuration options in favor of :db. 2020-05-24 14:34:39 -07:00
Rakefile extract database_cleaner-neo4j adapter. 2018-11-20 21:01:52 -08:00
database_cleaner-neo4j.gemspec release v1.99.0. 2021-01-31 15:12:15 -08:00

README.md

Database Cleaner Adapter for Neo4j

Build Status Code Climate

Clean your Neo4j databases with Database Cleaner.

See https://github.com/DatabaseCleaner/database_cleaner for more information.

Installation

# Gemfile
group :test do
  gem 'database_cleaner-neo4j'
end

Supported Strategies

Truncation Transaction Deletion
Yes Yes Yes

(Default strategy is denoted in bold)

Configuration options

ORM How to access Notes
Neo4j DatabaseCleaner[:neo4j] Database type and path(URI) DatabaseCleaner[:neo4j, db: {type: :server_db, path: 'http://localhost:7475'}].

Note that Truncation and Deletion strategies for Neo4j will just delete all nodes and relationships from the database.

Common Errors

Model fails to load with Neo4j using transactions

When you are using neo4j gem it creates schema and reads indexes upon loading models. These operations can't be done during a transaction. You have to preload your models before DatabaseCleaner starts a transaction.

Add to your rails_helper or spec_helper after requiring database_cleaner-neo4j:

require 'database_cleaner/neo4j'

Dir["#{Rails.root}/app/models/**/*.rb"].each do |model|
  load model
end

See [LICENSE] for details.