14 lines
192 B
Ruby
14 lines
192 B
Ruby
require 'spec_helper'
|
|
|
|
describe Product do
|
|
|
|
describe 'update product category through ids' do
|
|
|
|
it 'has a valid factory' do
|
|
expect( build :product ).to be_valid
|
|
end
|
|
end
|
|
|
|
|
|
end
|