diff options
Diffstat (limited to 'spec')
-rw-r--r-- | spec/models/order_spec.rb | 10 | ||||
-rw-r--r-- | spec/models/payment_spec.rb | 6 | ||||
-rw-r--r-- | spec/models/product_order_spec.rb | 8 |
3 files changed, 24 insertions, 0 deletions
diff --git a/spec/models/order_spec.rb b/spec/models/order_spec.rb new file mode 100644 index 0000000..08be522 --- /dev/null +++ b/spec/models/order_spec.rb @@ -0,0 +1,10 @@ +# 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 diff --git a/spec/models/payment_spec.rb b/spec/models/payment_spec.rb new file mode 100644 index 0000000..65bdeec --- /dev/null +++ b/spec/models/payment_spec.rb @@ -0,0 +1,6 @@ +require 'rails_helper' + +RSpec.describe Payment, type: :model do + it { should have_one(:order) } + it { should belong_to(:card) } +end diff --git a/spec/models/product_order_spec.rb b/spec/models/product_order_spec.rb new file mode 100644 index 0000000..0bd9199 --- /dev/null +++ b/spec/models/product_order_spec.rb @@ -0,0 +1,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 |