summaryrefslogtreecommitdiff
path: root/spec/models/product_order_spec.rb
blob: 0bd9199d42611b4fd10d99b61d9e85d0567bdbe5 (plain)
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