summaryrefslogtreecommitdiff
path: root/spec/models/payment_spec.rb
blob: 65bdeec7f19a397ae4d355f71bd3d217ce77bcd0 (plain)
1
2
3
4
5
6
require 'rails_helper'

RSpec.describe Payment, type: :model do
  it { should have_one(:order) }
  it { should belong_to(:card) }
end