Sha256: c25d74c085be16ff84b939c2a5be3392c260536443342354feb5b0a862d5b986
Contents?: true
Size: 634 Bytes
Versions: 2
Compression:
Stored size: 634 Bytes
Contents
# frozen_string_literal: true # Unit tests for Noths::Product describe 'Product' do let(:instance) { Noths::Product.new } describe 'test an instance of Product' do it 'should create an instance of Product' do expect(instance).to be_instance_of(Noths::Product) end end describe 'test attribute "id"' do it 'should work' end describe 'test attribute "sku"' do it 'should work' end describe 'test attribute "title"' do it 'should work' end describe 'test attribute "personalisable"' do it 'should work' end describe 'test attribute "image"' do it 'should work' end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
noths-0.2.1 | spec/models/product_spec.rb |
noths-0.2.0 | spec/models/product_spec.rb |