Sha256: 2a340ee587b077dd454f365a1060fcafca7442e3964f05ccd07dc0dbd33a44c3
Contents?: true
Size: 296 Bytes
Versions: 12
Compression:
Stored size: 296 Bytes
Contents
require 'rails_helper' RSpec.describe Note, :type => :model do it { should have_many(:private_comments).dependent(:destroy).class_name('Comment').conditions(role: 'private') } it { should have_many(:public_comments).dependent(:destroy).class_name('Comment').conditions(role: 'public') } end
Version data entries
12 entries across 12 versions & 1 rubygems