# frozen_string_literal: true require 'rails_helper' RSpec.describe Order, type: :model do it { should belong_to(:user_account) } it { should have_one(:payment) } it { should have_many(:product_orders) } it { should have_many(:products) } end