spec/models/account_spec.rb in atrium-ruby-2.8.1 vs spec/models/account_spec.rb in atrium-ruby-2.8.2
- old
+ new
@@ -25,9 +25,15 @@
describe 'test an instance of Account' do
it 'should create an instance of Account' do
expect(@instance).to be_instance_of(Atrium::Account)
end
end
+ describe 'test attribute "account_number"' do
+ it 'should work' do
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
+ end
+ end
+
describe 'test attribute "apr"' do
it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
end
end