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