1 2 3 4 5 6 7 8
# frozen_string_literal: true require 'rails_helper' RSpec.describe ProductOrder, type: :model do it { should belong_to(:product) } it { should belong_to(:order) } end