summaryrefslogtreecommitdiff
path: root/spec/overrides/spree/users/have_many_subscriptions.rb
blob: c706919eb7888c1a77693f6700d1bf141f18915e (plain)
1
2
3
4
5
6
7
8
require 'rails_helper'

RSpec.describe Spree::Users::HaveManySubscritptions, type: :model do
  subject { Spree::User.new }

  it { is_expected.to have_many :subscriptions }
  it { is_expected.to accept_nested_attributes_for :subscriptions }
end