-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathlock_history_response_spec.rb
More file actions
52 lines (42 loc) · 1.47 KB
/
lock_history_response_spec.rb
File metadata and controls
52 lines (42 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
=begin
#Xero Finance API
#The Finance API is a collection of endpoints which customers can use in the course of a loan application, which may assist lenders to gain the confidence they need to provide capital.
Contact: api@xero.com
Generated by: https://openapi-generator.tech
OpenAPI Generator version: 4.3.1
=end
require 'spec_helper'
require 'json'
require 'date'
# Unit tests for XeroRuby::Finance::LockHistoryResponse
# Automatically generated by openapi-generator (https://openapi-generator.tech)
# Please update as you see appropriate
describe 'LockHistoryResponse' do
before do
# run before each test
@instance = XeroRuby::Finance::LockHistoryResponse.new
end
after do
# run after each test
end
describe 'test an instance of LockHistoryResponse' do
it 'should create an instance of LockHistoryResponse' do
expect(@instance).to be_instance_of(XeroRuby::Finance::LockHistoryResponse)
end
end
describe 'test attribute "organisation_id"' do
it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
end
end
describe 'test attribute "end_date"' do
it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
end
end
describe 'test attribute "lock_dates"' do
it 'should work' do
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
end
end
end