finnhub_ruby 1.1.16 → 1.1.18

Sign up to get free protection for your applications and to get access to all the features.
Files changed (65) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -2
  3. data/docs/BondTickData.md +34 -0
  4. data/docs/Company.md +1 -1
  5. data/docs/DefaultApi.md +617 -9
  6. data/docs/ETFProfileData.md +8 -2
  7. data/docs/InstitutionalOwnership.md +22 -0
  8. data/docs/InstitutionalOwnershipGroup.md +20 -0
  9. data/docs/InstitutionalOwnershipInfo.md +36 -0
  10. data/docs/InstitutionalPortfolio.md +22 -0
  11. data/docs/InstitutionalPortfolioGroup.md +22 -0
  12. data/docs/InstitutionalPortfolioInfo.md +38 -0
  13. data/docs/InstitutionalProfile.md +20 -0
  14. data/docs/InstitutionalProfileInfo.md +28 -0
  15. data/docs/IsinChange.md +22 -0
  16. data/docs/IsinChangeInfo.md +22 -0
  17. data/docs/KeyCustomersSuppliers.md +4 -0
  18. data/docs/MutualFundProfileData.md +5 -1
  19. data/docs/PriceMetrics.md +20 -0
  20. data/docs/SectorMetric.md +20 -0
  21. data/docs/SectorMetricData.md +20 -0
  22. data/docs/SymbolChange.md +22 -0
  23. data/docs/SymbolChangeInfo.md +22 -0
  24. data/finnhub_ruby-1.1.16.gem +0 -0
  25. data/finnhub_ruby-1.1.17.gem +0 -0
  26. data/lib/finnhub_ruby/api/default_api.rb +602 -8
  27. data/lib/finnhub_ruby/models/bond_tick_data.rb +311 -0
  28. data/lib/finnhub_ruby/models/company.rb +1 -1
  29. data/lib/finnhub_ruby/models/etf_profile_data.rb +35 -5
  30. data/lib/finnhub_ruby/models/institutional_ownership.rb +241 -0
  31. data/lib/finnhub_ruby/models/institutional_ownership_group.rb +231 -0
  32. data/lib/finnhub_ruby/models/institutional_ownership_info.rb +309 -0
  33. data/lib/finnhub_ruby/models/institutional_portfolio.rb +241 -0
  34. data/lib/finnhub_ruby/models/institutional_portfolio_group.rb +241 -0
  35. data/lib/finnhub_ruby/models/institutional_portfolio_info.rb +319 -0
  36. data/lib/finnhub_ruby/models/institutional_profile.rb +231 -0
  37. data/lib/finnhub_ruby/models/institutional_profile_info.rb +269 -0
  38. data/lib/finnhub_ruby/models/isin_change.rb +241 -0
  39. data/lib/finnhub_ruby/models/isin_change_info.rb +239 -0
  40. data/lib/finnhub_ruby/models/key_customers_suppliers.rb +21 -1
  41. data/lib/finnhub_ruby/models/mutual_fund_profile_data.rb +24 -4
  42. data/lib/finnhub_ruby/models/price_metrics.rb +228 -0
  43. data/lib/finnhub_ruby/models/sector_metric.rb +231 -0
  44. data/lib/finnhub_ruby/models/sector_metric_data.rb +229 -0
  45. data/lib/finnhub_ruby/models/symbol_change.rb +241 -0
  46. data/lib/finnhub_ruby/models/symbol_change_info.rb +239 -0
  47. data/lib/finnhub_ruby/version.rb +1 -1
  48. data/lib/finnhub_ruby.rb +16 -0
  49. data/spec/models/bond_tick_data_spec.rb +82 -0
  50. data/spec/models/institutional_ownership_group_spec.rb +40 -0
  51. data/spec/models/institutional_ownership_info_spec.rb +88 -0
  52. data/spec/models/institutional_ownership_spec.rb +46 -0
  53. data/spec/models/institutional_portfolio_group_spec.rb +46 -0
  54. data/spec/models/institutional_portfolio_info_spec.rb +94 -0
  55. data/spec/models/institutional_portfolio_spec.rb +46 -0
  56. data/spec/models/institutional_profile_info_spec.rb +64 -0
  57. data/spec/models/institutional_profile_spec.rb +40 -0
  58. data/spec/models/isin_change_info_spec.rb +46 -0
  59. data/spec/models/isin_change_spec.rb +46 -0
  60. data/spec/models/price_metrics_spec.rb +40 -0
  61. data/spec/models/sector_metric_data_spec.rb +40 -0
  62. data/spec/models/sector_metric_spec.rb +40 -0
  63. data/spec/models/symbol_change_info_spec.rb +46 -0
  64. data/spec/models/symbol_change_spec.rb +46 -0
  65. metadata +68 -2
@@ -0,0 +1,94 @@
1
+ =begin
2
+ #Finnhub API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.2.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for FinnhubRuby::InstitutionalPortfolioInfo
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe FinnhubRuby::InstitutionalPortfolioInfo do
21
+ let(:instance) { FinnhubRuby::InstitutionalPortfolioInfo.new }
22
+
23
+ describe 'test an instance of InstitutionalPortfolioInfo' do
24
+ it 'should create an instance of InstitutionalPortfolioInfo' do
25
+ expect(instance).to be_instance_of(FinnhubRuby::InstitutionalPortfolioInfo)
26
+ end
27
+ end
28
+ describe 'test attribute "symbol"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "cusip"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "name"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
46
+ describe 'test attribute "put_call"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "change"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
58
+ describe 'test attribute "no_voting"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
61
+ end
62
+ end
63
+
64
+ describe 'test attribute "percentage"' do
65
+ it 'should work' do
66
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
67
+ end
68
+ end
69
+
70
+ describe 'test attribute "share"' do
71
+ it 'should work' do
72
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
73
+ end
74
+ end
75
+
76
+ describe 'test attribute "shared_voting"' do
77
+ it 'should work' do
78
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
79
+ end
80
+ end
81
+
82
+ describe 'test attribute "sole_voting"' do
83
+ it 'should work' do
84
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
85
+ end
86
+ end
87
+
88
+ describe 'test attribute "value"' do
89
+ it 'should work' do
90
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
91
+ end
92
+ end
93
+
94
+ end
@@ -0,0 +1,46 @@
1
+ =begin
2
+ #Finnhub API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.2.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for FinnhubRuby::InstitutionalPortfolio
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe FinnhubRuby::InstitutionalPortfolio do
21
+ let(:instance) { FinnhubRuby::InstitutionalPortfolio.new }
22
+
23
+ describe 'test an instance of InstitutionalPortfolio' do
24
+ it 'should create an instance of InstitutionalPortfolio' do
25
+ expect(instance).to be_instance_of(FinnhubRuby::InstitutionalPortfolio)
26
+ end
27
+ end
28
+ describe 'test attribute "name"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "cik"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "data"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
46
+ end
@@ -0,0 +1,64 @@
1
+ =begin
2
+ #Finnhub API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.2.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for FinnhubRuby::InstitutionalProfileInfo
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe FinnhubRuby::InstitutionalProfileInfo do
21
+ let(:instance) { FinnhubRuby::InstitutionalProfileInfo.new }
22
+
23
+ describe 'test an instance of InstitutionalProfileInfo' do
24
+ it 'should create an instance of InstitutionalProfileInfo' do
25
+ expect(instance).to be_instance_of(FinnhubRuby::InstitutionalProfileInfo)
26
+ end
27
+ end
28
+ describe 'test attribute "cik"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "firm_type"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "manager"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
46
+ describe 'test attribute "philosophy"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "profile"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
58
+ describe 'test attribute "profile_img"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
61
+ end
62
+ end
63
+
64
+ end
@@ -0,0 +1,40 @@
1
+ =begin
2
+ #Finnhub API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.2.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for FinnhubRuby::InstitutionalProfile
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe FinnhubRuby::InstitutionalProfile do
21
+ let(:instance) { FinnhubRuby::InstitutionalProfile.new }
22
+
23
+ describe 'test an instance of InstitutionalProfile' do
24
+ it 'should create an instance of InstitutionalProfile' do
25
+ expect(instance).to be_instance_of(FinnhubRuby::InstitutionalProfile)
26
+ end
27
+ end
28
+ describe 'test attribute "cik"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "data"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ end
@@ -0,0 +1,46 @@
1
+ =begin
2
+ #Finnhub API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.2.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for FinnhubRuby::IsinChangeInfo
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe FinnhubRuby::IsinChangeInfo do
21
+ let(:instance) { FinnhubRuby::IsinChangeInfo.new }
22
+
23
+ describe 'test an instance of IsinChangeInfo' do
24
+ it 'should create an instance of IsinChangeInfo' do
25
+ expect(instance).to be_instance_of(FinnhubRuby::IsinChangeInfo)
26
+ end
27
+ end
28
+ describe 'test attribute "at_date"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "old_isin"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "new_isin"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
46
+ end
@@ -0,0 +1,46 @@
1
+ =begin
2
+ #Finnhub API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.2.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for FinnhubRuby::IsinChange
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe FinnhubRuby::IsinChange do
21
+ let(:instance) { FinnhubRuby::IsinChange.new }
22
+
23
+ describe 'test an instance of IsinChange' do
24
+ it 'should create an instance of IsinChange' do
25
+ expect(instance).to be_instance_of(FinnhubRuby::IsinChange)
26
+ end
27
+ end
28
+ describe 'test attribute "from_date"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "to_date"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "data"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
46
+ end
@@ -0,0 +1,40 @@
1
+ =begin
2
+ #Finnhub API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.2.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for FinnhubRuby::PriceMetrics
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe FinnhubRuby::PriceMetrics do
21
+ let(:instance) { FinnhubRuby::PriceMetrics.new }
22
+
23
+ describe 'test an instance of PriceMetrics' do
24
+ it 'should create an instance of PriceMetrics' do
25
+ expect(instance).to be_instance_of(FinnhubRuby::PriceMetrics)
26
+ end
27
+ end
28
+ describe 'test attribute "symbol"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "data"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ end
@@ -0,0 +1,40 @@
1
+ =begin
2
+ #Finnhub API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.2.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for FinnhubRuby::SectorMetricData
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe FinnhubRuby::SectorMetricData do
21
+ let(:instance) { FinnhubRuby::SectorMetricData.new }
22
+
23
+ describe 'test an instance of SectorMetricData' do
24
+ it 'should create an instance of SectorMetricData' do
25
+ expect(instance).to be_instance_of(FinnhubRuby::SectorMetricData)
26
+ end
27
+ end
28
+ describe 'test attribute "sector"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "metrics"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ end
@@ -0,0 +1,40 @@
1
+ =begin
2
+ #Finnhub API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.2.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for FinnhubRuby::SectorMetric
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe FinnhubRuby::SectorMetric do
21
+ let(:instance) { FinnhubRuby::SectorMetric.new }
22
+
23
+ describe 'test an instance of SectorMetric' do
24
+ it 'should create an instance of SectorMetric' do
25
+ expect(instance).to be_instance_of(FinnhubRuby::SectorMetric)
26
+ end
27
+ end
28
+ describe 'test attribute "region"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "data"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ end
@@ -0,0 +1,46 @@
1
+ =begin
2
+ #Finnhub API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.2.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for FinnhubRuby::SymbolChangeInfo
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe FinnhubRuby::SymbolChangeInfo do
21
+ let(:instance) { FinnhubRuby::SymbolChangeInfo.new }
22
+
23
+ describe 'test an instance of SymbolChangeInfo' do
24
+ it 'should create an instance of SymbolChangeInfo' do
25
+ expect(instance).to be_instance_of(FinnhubRuby::SymbolChangeInfo)
26
+ end
27
+ end
28
+ describe 'test attribute "at_date"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "old_symbol"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "new_symbol"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
46
+ end
@@ -0,0 +1,46 @@
1
+ =begin
2
+ #Finnhub API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.2.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for FinnhubRuby::SymbolChange
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe FinnhubRuby::SymbolChange do
21
+ let(:instance) { FinnhubRuby::SymbolChange.new }
22
+
23
+ describe 'test an instance of SymbolChange' do
24
+ it 'should create an instance of SymbolChange' do
25
+ expect(instance).to be_instance_of(FinnhubRuby::SymbolChange)
26
+ end
27
+ end
28
+ describe 'test attribute "from_date"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "to_date"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "data"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
46
+ end