module DatabaseCleaner::Mongo::TruncationMixin
Public Instance Methods
clean()
click to toggle source
# File lib/database_cleaner/mongo/truncation_mixin.rb, line 5 def clean if @only collections.each { |c| c.remove if @only.include?(c.name) } else collections.each { |c| c.remove unless @tables_to_exclude.include?(c.name) } end true end
Private Instance Methods
collections()
click to toggle source
# File lib/database_cleaner/mongo/truncation_mixin.rb, line 16 def collections database.collections.select { |c| c.name !~ /^system\./ } end