Sha256: 999363e817205992a5b185a8608f3f421d924cdf50c8410d9a4d0d6aecc6b9d2
Contents?: true
Size: 361 Bytes
Versions: 7
Compression:
Stored size: 361 Bytes
Contents
# frozen_string_literal: true require 'rails_helper' RSpec.describe Supply, type: :model do describe 'Relationships' do it { should have_many(:uses) } it { should have_many(:recipe_uses) } it { should have_many(:recipes).through(:uses) } it { should have_many(:how_to_uses) } it { should have_many(:how_tos).through(:uses) } end end
Version data entries
7 entries across 7 versions & 1 rubygems