Sha256: 6e0f8e97ba11504063a47341b76ed682cf4742ca286b58c3d0d2cb1805524781

Contents?: true

Size: 464 Bytes

Versions: 2

Compression:

Stored size: 464 Bytes

Contents

# frozen_string_literal: true

# Unit tests for Noths::ProductOption
describe 'ProductOption' do
  let(:instance) { Noths::ProductOption.new }

  describe 'test an instance of ProductOption' do
    it 'should create an instance of ProductOption' do
      expect(instance).to be_instance_of(Noths::ProductOption)
    end
  end
  describe 'test attribute "name"' do
    it 'should work'
  end

  describe 'test attribute "value"' 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_option_spec.rb
noths-0.2.0 spec/models/product_option_spec.rb