spark_api 1.4.34 → 1.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/VERSION +1 -1
- data/lib/spark_api/authentication/api_auth.rb +1 -1
- data/lib/spark_api/authentication/oauth2.rb +1 -1
- data/lib/spark_api/authentication/oauth2_impl/grant_type_base.rb +1 -1
- data/lib/spark_api/client.rb +2 -2
- data/lib/spark_api/request.rb +1 -1
- data/spec/spec_helper.rb +9 -4
- data/spec/unit/spark_api/authentication/api_auth_spec.rb +21 -22
- data/spec/unit/spark_api/authentication/base_auth_spec.rb +3 -3
- data/spec/unit/spark_api/authentication/oauth2_impl/faraday_middleware_spec.rb +1 -1
- data/spec/unit/spark_api/authentication/oauth2_impl/grant_type_base_spec.rb +1 -1
- data/spec/unit/spark_api/authentication/oauth2_impl/single_session_provider_spec.rb +2 -2
- data/spec/unit/spark_api/authentication/oauth2_spec.rb +40 -40
- data/spec/unit/spark_api/authentication_spec.rb +2 -2
- data/spec/unit/spark_api/configuration/yaml_spec.rb +44 -44
- data/spec/unit/spark_api/configuration_spec.rb +56 -57
- data/spec/unit/spark_api/faraday_middleware_spec.rb +12 -12
- data/spec/unit/spark_api/models/account_spec.rb +20 -20
- data/spec/unit/spark_api/models/activity_spec.rb +5 -5
- data/spec/unit/spark_api/models/base_spec.rb +32 -32
- data/spec/unit/spark_api/models/concerns/destroyable_spec.rb +2 -2
- data/spec/unit/spark_api/models/concerns/savable_spec.rb +19 -19
- data/spec/unit/spark_api/models/connect_prefs_spec.rb +1 -1
- data/spec/unit/spark_api/models/constraint_spec.rb +1 -1
- data/spec/unit/spark_api/models/contact_spec.rb +50 -50
- data/spec/unit/spark_api/models/dirty_spec.rb +12 -12
- data/spec/unit/spark_api/models/document_spec.rb +3 -3
- data/spec/unit/spark_api/models/fields_spec.rb +17 -17
- data/spec/unit/spark_api/models/finders_spec.rb +7 -7
- data/spec/unit/spark_api/models/floplan_spec.rb +4 -4
- data/spec/unit/spark_api/models/listing_cart_spec.rb +46 -46
- data/spec/unit/spark_api/models/listing_meta_translations_spec.rb +6 -6
- data/spec/unit/spark_api/models/listing_spec.rb +91 -91
- data/spec/unit/spark_api/models/message_spec.rb +10 -10
- data/spec/unit/spark_api/models/note_spec.rb +10 -10
- data/spec/unit/spark_api/models/notification_spec.rb +6 -6
- data/spec/unit/spark_api/models/open_house_spec.rb +4 -4
- data/spec/unit/spark_api/models/photo_spec.rb +8 -8
- data/spec/unit/spark_api/models/portal_spec.rb +4 -4
- data/spec/unit/spark_api/models/property_types_spec.rb +5 -5
- data/spec/unit/spark_api/models/rental_calendar_spec.rb +13 -11
- data/spec/unit/spark_api/models/rule_spec.rb +2 -2
- data/spec/unit/spark_api/models/saved_search_spec.rb +33 -33
- data/spec/unit/spark_api/models/search_template/quick_search_spec.rb +5 -5
- data/spec/unit/spark_api/models/shared_listing_spec.rb +12 -12
- data/spec/unit/spark_api/models/sort_spec.rb +3 -3
- data/spec/unit/spark_api/models/standard_fields_spec.rb +12 -12
- data/spec/unit/spark_api/models/subresource_spec.rb +18 -18
- data/spec/unit/spark_api/models/system_info_spec.rb +7 -7
- data/spec/unit/spark_api/models/tour_of_home_spec.rb +3 -3
- data/spec/unit/spark_api/models/video_spec.rb +9 -9
- data/spec/unit/spark_api/models/virtual_tour_spec.rb +7 -7
- data/spec/unit/spark_api/models/vow_account_spec.rb +8 -8
- data/spec/unit/spark_api/multi_client_spec.rb +14 -14
- data/spec/unit/spark_api/options_hash_spec.rb +4 -4
- data/spec/unit/spark_api/paginate_spec.rb +71 -71
- data/spec/unit/spark_api/primary_array_spec.rb +5 -5
- data/spec/unit/spark_api/request_spec.rb +60 -60
- data/spec/unit/spark_api_spec.rb +6 -6
- metadata +162 -233
data/spec/unit/spark_api_spec.rb
CHANGED
@@ -3,30 +3,30 @@ require './spec/spec_helper'
|
|
3
3
|
describe SparkApi do
|
4
4
|
|
5
5
|
it "should use 'yajl-ruby' for parsing json" do
|
6
|
-
MultiJson.engine.
|
6
|
+
expect(MultiJson.engine).to eq(MultiJson::Adapters::Yajl) unless jruby?
|
7
7
|
end
|
8
8
|
|
9
9
|
it "should load the version" do
|
10
|
-
subject::VERSION.
|
10
|
+
expect(subject::VERSION).to match(/\d+\.\d+\.\d+/)
|
11
11
|
end
|
12
12
|
|
13
13
|
it "should give me a client connection" do
|
14
|
-
subject.client.
|
14
|
+
expect(subject.client).to be_a(SparkApi::Client)
|
15
15
|
end
|
16
16
|
|
17
17
|
it "should reset my connection" do
|
18
18
|
c1 = subject.client
|
19
19
|
subject.reset
|
20
|
-
subject.client.
|
20
|
+
expect(subject.client).not_to eq(c1)
|
21
21
|
end
|
22
22
|
|
23
23
|
it "should let me override the default logger" do
|
24
|
-
subject.logger.level.
|
24
|
+
expect(subject.logger.level).to eq(Logger::DEBUG) # default overridden in spec_helper
|
25
25
|
|
26
26
|
subject.logger = Logger.new('/dev/null')
|
27
27
|
subject.logger.level = Logger::WARN
|
28
28
|
|
29
|
-
SparkApi.logger.level.
|
29
|
+
expect(SparkApi.logger.level).to eq(Logger::WARN)
|
30
30
|
end
|
31
31
|
end
|
32
32
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spark_api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brandon Hornseth
|
@@ -9,22 +9,22 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2020-
|
12
|
+
date: 2020-12-31 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: faraday
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
requirements:
|
18
|
-
- - "
|
18
|
+
- - ">="
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: 0.
|
20
|
+
version: 0.17.3
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
|
-
- - "
|
25
|
+
- - ">="
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version: 0.
|
27
|
+
version: 0.17.3
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
29
|
name: multi_json
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
@@ -43,14 +43,14 @@ dependencies:
|
|
43
43
|
name: json
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
45
45
|
requirements:
|
46
|
-
- - "
|
46
|
+
- - ">="
|
47
47
|
- !ruby/object:Gem::Version
|
48
48
|
version: '1.7'
|
49
49
|
type: :runtime
|
50
50
|
prerelease: false
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
52
52
|
requirements:
|
53
|
-
- - "
|
53
|
+
- - ">="
|
54
54
|
- !ruby/object:Gem::Version
|
55
55
|
version: '1.7'
|
56
56
|
- !ruby/object:Gem::Dependency
|
@@ -107,92 +107,36 @@ dependencies:
|
|
107
107
|
- - ">="
|
108
108
|
- !ruby/object:Gem::Version
|
109
109
|
version: '1.0'
|
110
|
-
- !ruby/object:Gem::Dependency
|
111
|
-
name: public_suffix
|
112
|
-
requirement: !ruby/object:Gem::Requirement
|
113
|
-
requirements:
|
114
|
-
- - "~>"
|
115
|
-
- !ruby/object:Gem::Version
|
116
|
-
version: 1.4.6
|
117
|
-
type: :development
|
118
|
-
prerelease: false
|
119
|
-
version_requirements: !ruby/object:Gem::Requirement
|
120
|
-
requirements:
|
121
|
-
- - "~>"
|
122
|
-
- !ruby/object:Gem::Version
|
123
|
-
version: 1.4.6
|
124
110
|
- !ruby/object:Gem::Dependency
|
125
111
|
name: rake
|
126
112
|
requirement: !ruby/object:Gem::Requirement
|
127
113
|
requirements:
|
128
|
-
- - "
|
114
|
+
- - ">="
|
129
115
|
- !ruby/object:Gem::Version
|
130
|
-
version: 0
|
116
|
+
version: '0'
|
131
117
|
type: :development
|
132
118
|
prerelease: false
|
133
119
|
version_requirements: !ruby/object:Gem::Requirement
|
134
120
|
requirements:
|
135
|
-
- - "
|
121
|
+
- - ">="
|
136
122
|
- !ruby/object:Gem::Version
|
137
|
-
version: 0
|
123
|
+
version: '0'
|
138
124
|
- !ruby/object:Gem::Dependency
|
139
125
|
name: rspec
|
140
126
|
requirement: !ruby/object:Gem::Requirement
|
141
127
|
requirements:
|
142
|
-
- - "
|
128
|
+
- - ">="
|
143
129
|
- !ruby/object:Gem::Version
|
144
|
-
version:
|
130
|
+
version: '0'
|
145
131
|
type: :development
|
146
132
|
prerelease: false
|
147
133
|
version_requirements: !ruby/object:Gem::Requirement
|
148
134
|
requirements:
|
149
|
-
- - "
|
135
|
+
- - ">="
|
150
136
|
- !ruby/object:Gem::Version
|
151
|
-
version:
|
137
|
+
version: '0'
|
152
138
|
- !ruby/object:Gem::Dependency
|
153
139
|
name: webmock
|
154
|
-
requirement: !ruby/object:Gem::Requirement
|
155
|
-
requirements:
|
156
|
-
- - "~>"
|
157
|
-
- !ruby/object:Gem::Version
|
158
|
-
version: '1.9'
|
159
|
-
type: :development
|
160
|
-
prerelease: false
|
161
|
-
version_requirements: !ruby/object:Gem::Requirement
|
162
|
-
requirements:
|
163
|
-
- - "~>"
|
164
|
-
- !ruby/object:Gem::Version
|
165
|
-
version: '1.9'
|
166
|
-
- !ruby/object:Gem::Dependency
|
167
|
-
name: typhoeus
|
168
|
-
requirement: !ruby/object:Gem::Requirement
|
169
|
-
requirements:
|
170
|
-
- - "~>"
|
171
|
-
- !ruby/object:Gem::Version
|
172
|
-
version: '0.3'
|
173
|
-
type: :development
|
174
|
-
prerelease: false
|
175
|
-
version_requirements: !ruby/object:Gem::Requirement
|
176
|
-
requirements:
|
177
|
-
- - "~>"
|
178
|
-
- !ruby/object:Gem::Version
|
179
|
-
version: '0.3'
|
180
|
-
- !ruby/object:Gem::Dependency
|
181
|
-
name: ci_reporter
|
182
|
-
requirement: !ruby/object:Gem::Requirement
|
183
|
-
requirements:
|
184
|
-
- - "~>"
|
185
|
-
- !ruby/object:Gem::Version
|
186
|
-
version: 1.7.0
|
187
|
-
type: :development
|
188
|
-
prerelease: false
|
189
|
-
version_requirements: !ruby/object:Gem::Requirement
|
190
|
-
requirements:
|
191
|
-
- - "~>"
|
192
|
-
- !ruby/object:Gem::Version
|
193
|
-
version: 1.7.0
|
194
|
-
- !ruby/object:Gem::Dependency
|
195
|
-
name: rb-readline
|
196
140
|
requirement: !ruby/object:Gem::Requirement
|
197
141
|
requirements:
|
198
142
|
- - ">="
|
@@ -206,7 +150,7 @@ dependencies:
|
|
206
150
|
- !ruby/object:Gem::Version
|
207
151
|
version: '0'
|
208
152
|
- !ruby/object:Gem::Dependency
|
209
|
-
name:
|
153
|
+
name: rexml
|
210
154
|
requirement: !ruby/object:Gem::Requirement
|
211
155
|
requirements:
|
212
156
|
- - ">="
|
@@ -220,7 +164,7 @@ dependencies:
|
|
220
164
|
- !ruby/object:Gem::Version
|
221
165
|
version: '0'
|
222
166
|
- !ruby/object:Gem::Dependency
|
223
|
-
name:
|
167
|
+
name: typhoeus
|
224
168
|
requirement: !ruby/object:Gem::Requirement
|
225
169
|
requirements:
|
226
170
|
- - ">="
|
@@ -234,7 +178,7 @@ dependencies:
|
|
234
178
|
- !ruby/object:Gem::Version
|
235
179
|
version: '0'
|
236
180
|
- !ruby/object:Gem::Dependency
|
237
|
-
name:
|
181
|
+
name: ci_reporter_rspec
|
238
182
|
requirement: !ruby/object:Gem::Requirement
|
239
183
|
requirements:
|
240
184
|
- - ">="
|
@@ -248,21 +192,7 @@ dependencies:
|
|
248
192
|
- !ruby/object:Gem::Version
|
249
193
|
version: '0'
|
250
194
|
- !ruby/object:Gem::Dependency
|
251
|
-
name:
|
252
|
-
requirement: !ruby/object:Gem::Requirement
|
253
|
-
requirements:
|
254
|
-
- - "~>"
|
255
|
-
- !ruby/object:Gem::Version
|
256
|
-
version: 3.0.8
|
257
|
-
type: :development
|
258
|
-
prerelease: false
|
259
|
-
version_requirements: !ruby/object:Gem::Requirement
|
260
|
-
requirements:
|
261
|
-
- - "~>"
|
262
|
-
- !ruby/object:Gem::Version
|
263
|
-
version: 3.0.8
|
264
|
-
- !ruby/object:Gem::Dependency
|
265
|
-
name: guard-rspec
|
195
|
+
name: simplecov-rcov
|
266
196
|
requirement: !ruby/object:Gem::Requirement
|
267
197
|
requirements:
|
268
198
|
- - ">="
|
@@ -603,209 +533,208 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
603
533
|
- !ruby/object:Gem::Version
|
604
534
|
version: '1.8'
|
605
535
|
requirements: []
|
606
|
-
|
607
|
-
rubygems_version: 2.7.6
|
536
|
+
rubygems_version: 3.1.4
|
608
537
|
signing_key:
|
609
538
|
specification_version: 4
|
610
539
|
summary: A library for interacting with the Spark web services.
|
611
540
|
test_files:
|
612
541
|
- spec/fixtures/accounts/all.json
|
613
|
-
- spec/fixtures/accounts/my.json
|
614
|
-
- spec/fixtures/accounts/my_portal.json
|
615
542
|
- spec/fixtures/accounts/my_put.json
|
616
|
-
- spec/fixtures/accounts/
|
543
|
+
- spec/fixtures/accounts/my_portal.json
|
617
544
|
- spec/fixtures/accounts/office.json
|
545
|
+
- spec/fixtures/accounts/my.json
|
618
546
|
- spec/fixtures/accounts/password_save.json
|
619
|
-
- spec/fixtures/
|
547
|
+
- spec/fixtures/accounts/my_save.json
|
620
548
|
- spec/fixtures/authentication_failure.json
|
621
|
-
- spec/fixtures/
|
622
|
-
- spec/fixtures/
|
623
|
-
- spec/fixtures/
|
624
|
-
- spec/fixtures/
|
549
|
+
- spec/fixtures/notes/new.json
|
550
|
+
- spec/fixtures/notes/agent_shared.json
|
551
|
+
- spec/fixtures/notes/agent_shared_empty.json
|
552
|
+
- spec/fixtures/notes/add.json
|
553
|
+
- spec/fixtures/contacts/new_empty.json
|
625
554
|
- spec/fixtures/contacts/contacts.json
|
626
|
-
- spec/fixtures/contacts/my.json
|
627
555
|
- spec/fixtures/contacts/new.json
|
628
|
-
- spec/fixtures/contacts/new_empty.json
|
629
|
-
- spec/fixtures/contacts/new_notify.json
|
630
|
-
- spec/fixtures/contacts/post.json
|
631
556
|
- spec/fixtures/contacts/tags.json
|
632
|
-
- spec/fixtures/contacts/
|
557
|
+
- spec/fixtures/contacts/post.json
|
633
558
|
- spec/fixtures/contacts/vow_accounts/get.json
|
634
559
|
- spec/fixtures/contacts/vow_accounts/new.json
|
560
|
+
- spec/fixtures/contacts/vow_accounts/edit.json
|
635
561
|
- spec/fixtures/contacts/vow_accounts/post.json
|
636
|
-
- spec/fixtures/
|
637
|
-
- spec/fixtures/
|
562
|
+
- spec/fixtures/contacts/my.json
|
563
|
+
- spec/fixtures/contacts/new_notify.json
|
564
|
+
- spec/fixtures/session.json
|
565
|
+
- spec/fixtures/no_results.json
|
566
|
+
- spec/fixtures/base.json
|
567
|
+
- spec/fixtures/success.json
|
568
|
+
- spec/fixtures/logo_fbs.png
|
569
|
+
- spec/fixtures/search_templates/quick_searches/get.json
|
570
|
+
- spec/fixtures/sorts/get.json
|
638
571
|
- spec/fixtures/errors/expired.json
|
639
|
-
- spec/fixtures/errors/failure.json
|
640
572
|
- spec/fixtures/errors/failure_with_constraint.json
|
573
|
+
- spec/fixtures/errors/failure.json
|
641
574
|
- spec/fixtures/errors/failure_with_msg.json
|
575
|
+
- spec/fixtures/oauth2_error.json
|
576
|
+
- spec/fixtures/portal/my_non_existant.json
|
577
|
+
- spec/fixtures/portal/new.json
|
578
|
+
- spec/fixtures/portal/enable.json
|
579
|
+
- spec/fixtures/portal/disable.json
|
580
|
+
- spec/fixtures/portal/post.json
|
581
|
+
- spec/fixtures/portal/my.json
|
582
|
+
- spec/fixtures/rules/get.json
|
583
|
+
- spec/fixtures/messages/new_empty.json
|
584
|
+
- spec/fixtures/messages/get.json
|
585
|
+
- spec/fixtures/messages/new_with_recipients.json
|
586
|
+
- spec/fixtures/messages/new.json
|
587
|
+
- spec/fixtures/messages/post.json
|
588
|
+
- spec/fixtures/messages/count.json
|
589
|
+
- spec/fixtures/comments/get.json
|
590
|
+
- spec/fixtures/comments/new.json
|
591
|
+
- spec/fixtures/comments/post.json
|
592
|
+
- spec/fixtures/fields/settings.json
|
642
593
|
- spec/fixtures/fields/order.json
|
643
594
|
- spec/fixtures/fields/order_a.json
|
644
|
-
- spec/fixtures/fields/settings.json
|
645
|
-
- spec/fixtures/finders.json
|
646
|
-
- spec/fixtures/generic_delete.json
|
647
595
|
- spec/fixtures/generic_failure.json
|
648
|
-
- spec/fixtures/idx_links/get.json
|
649
|
-
- spec/fixtures/listing_carts/add_listing.json
|
650
|
-
- spec/fixtures/listing_carts/add_listing_post.json
|
651
596
|
- spec/fixtures/listing_carts/add_listings.json
|
652
|
-
- spec/fixtures/listing_carts/add_listings_post.json
|
653
|
-
- spec/fixtures/listing_carts/add_portal_cart_listings.json
|
654
|
-
- spec/fixtures/listing_carts/add_portal_cart_listings_post.json
|
655
|
-
- spec/fixtures/listing_carts/empty.json
|
656
|
-
- spec/fixtures/listing_carts/listing_cart.json
|
657
597
|
- spec/fixtures/listing_carts/listing_portal_cart.json
|
658
|
-
- spec/fixtures/listing_carts/
|
659
|
-
- spec/fixtures/listing_carts/new_portal_cart.json
|
660
|
-
- spec/fixtures/listing_carts/post.json
|
598
|
+
- spec/fixtures/listing_carts/remove_listing.json
|
661
599
|
- spec/fixtures/listing_carts/post_portal_cart.json
|
600
|
+
- spec/fixtures/listing_carts/add_portal_cart_listings_post.json
|
662
601
|
- spec/fixtures/listing_carts/put.json
|
602
|
+
- spec/fixtures/listing_carts/new_portal_cart.json
|
603
|
+
- spec/fixtures/listing_carts/new.json
|
604
|
+
- spec/fixtures/listing_carts/add_listing_post.json
|
605
|
+
- spec/fixtures/listing_carts/add_listings_post.json
|
663
606
|
- spec/fixtures/listing_carts/put_ids.json
|
607
|
+
- spec/fixtures/listing_carts/add_listing.json
|
608
|
+
- spec/fixtures/listing_carts/post.json
|
609
|
+
- spec/fixtures/listing_carts/listing_cart.json
|
610
|
+
- spec/fixtures/listing_carts/empty.json
|
611
|
+
- spec/fixtures/listing_carts/add_portal_cart_listings.json
|
664
612
|
- spec/fixtures/listing_carts/put_name.json
|
665
|
-
- spec/fixtures/
|
613
|
+
- spec/fixtures/notifications/new_empty.json
|
614
|
+
- spec/fixtures/notifications/mark_read.json
|
615
|
+
- spec/fixtures/notifications/new.json
|
616
|
+
- spec/fixtures/notifications/notifications.json
|
617
|
+
- spec/fixtures/notifications/post.json
|
618
|
+
- spec/fixtures/notifications/unread.json
|
666
619
|
- spec/fixtures/listing_meta_translations/get.json
|
667
|
-
- spec/fixtures/
|
620
|
+
- spec/fixtures/finders.json
|
621
|
+
- spec/fixtures/generic_delete.json
|
622
|
+
- spec/fixtures/empty.json
|
623
|
+
- spec/fixtures/oauth2/error.json
|
624
|
+
- spec/fixtures/oauth2/access_with_old_refresh.json
|
625
|
+
- spec/fixtures/oauth2/authorization_code_body.json
|
626
|
+
- spec/fixtures/oauth2/password_body.json
|
627
|
+
- spec/fixtures/oauth2/access.json
|
628
|
+
- spec/fixtures/oauth2/access_with_refresh.json
|
629
|
+
- spec/fixtures/oauth2/refresh_body.json
|
630
|
+
- spec/fixtures/newsfeeds/get.json
|
631
|
+
- spec/fixtures/newsfeeds/inactive.json
|
632
|
+
- spec/fixtures/newsfeeds/meta.json
|
633
|
+
- spec/fixtures/listings/rental_calendar.json
|
668
634
|
- spec/fixtures/listings/constraints_with_pagination.json
|
669
|
-
- spec/fixtures/listings/
|
670
|
-
- spec/fixtures/listings/floplans_index.json
|
671
|
-
- spec/fixtures/listings/multiple.json
|
672
|
-
- spec/fixtures/listings/no_subresources.json
|
673
|
-
- spec/fixtures/listings/open_houses.json
|
674
|
-
- spec/fixtures/listings/photos/batch_delete.json
|
675
|
-
- spec/fixtures/listings/photos/index.json
|
676
|
-
- spec/fixtures/listings/photos/new.json
|
677
|
-
- spec/fixtures/listings/photos/post.json
|
678
|
-
- spec/fixtures/listings/photos/rollback.json
|
679
|
-
- spec/fixtures/listings/photos/rotate.json
|
680
|
-
- spec/fixtures/listings/put.json
|
635
|
+
- spec/fixtures/listings/with_supplement.json
|
681
636
|
- spec/fixtures/listings/put_expiration_date.json
|
682
|
-
- spec/fixtures/listings/
|
683
|
-
- spec/fixtures/listings/rental_calendar.json
|
684
|
-
- spec/fixtures/listings/reorder_photo.json
|
637
|
+
- spec/fixtures/listings/with_rental_calendar.json
|
685
638
|
- spec/fixtures/listings/shared_listing_get.json
|
639
|
+
- spec/fixtures/listings/photos/rotate.json
|
640
|
+
- spec/fixtures/listings/photos/new.json
|
641
|
+
- spec/fixtures/listings/photos/rollback.json
|
642
|
+
- spec/fixtures/listings/photos/post.json
|
643
|
+
- spec/fixtures/listings/photos/batch_delete.json
|
644
|
+
- spec/fixtures/listings/photos/index.json
|
645
|
+
- spec/fixtures/listings/tour_of_homes_search.json
|
646
|
+
- spec/fixtures/listings/virtual_tours_index.json
|
647
|
+
- spec/fixtures/listings/multiple.json
|
686
648
|
- spec/fixtures/listings/shared_listing_new.json
|
649
|
+
- spec/fixtures/listings/put.json
|
687
650
|
- spec/fixtures/listings/shared_listing_post.json
|
688
|
-
- spec/fixtures/listings/tour_of_homes.json
|
689
|
-
- spec/fixtures/listings/tour_of_homes_search.json
|
690
651
|
- spec/fixtures/listings/videos_index.json
|
691
|
-
- spec/fixtures/listings/
|
692
|
-
- spec/fixtures/listings/with_documents.json
|
652
|
+
- spec/fixtures/listings/document_index.json
|
693
653
|
- spec/fixtures/listings/with_permissions.json
|
654
|
+
- spec/fixtures/listings/constraints.json
|
655
|
+
- spec/fixtures/listings/with_vtour.json
|
694
656
|
- spec/fixtures/listings/with_photos.json
|
695
|
-
- spec/fixtures/listings/
|
696
|
-
- spec/fixtures/listings/with_supplement.json
|
657
|
+
- spec/fixtures/listings/no_subresources.json
|
697
658
|
- spec/fixtures/listings/with_videos.json
|
698
|
-
- spec/fixtures/listings/
|
699
|
-
- spec/fixtures/
|
700
|
-
- spec/fixtures/
|
701
|
-
- spec/fixtures/
|
702
|
-
- spec/fixtures/
|
703
|
-
- spec/fixtures/
|
704
|
-
- spec/fixtures/
|
705
|
-
- spec/fixtures/
|
706
|
-
- spec/fixtures/
|
707
|
-
- spec/fixtures/
|
708
|
-
- spec/fixtures/
|
709
|
-
- spec/fixtures/
|
710
|
-
- spec/fixtures/notes/add.json
|
711
|
-
- spec/fixtures/notes/agent_shared.json
|
712
|
-
- spec/fixtures/notes/agent_shared_empty.json
|
713
|
-
- spec/fixtures/notes/new.json
|
714
|
-
- spec/fixtures/notifications/mark_read.json
|
715
|
-
- spec/fixtures/notifications/new.json
|
716
|
-
- spec/fixtures/notifications/new_empty.json
|
717
|
-
- spec/fixtures/notifications/notifications.json
|
718
|
-
- spec/fixtures/notifications/post.json
|
719
|
-
- spec/fixtures/notifications/unread.json
|
720
|
-
- spec/fixtures/oauth2/access.json
|
721
|
-
- spec/fixtures/oauth2/access_with_old_refresh.json
|
722
|
-
- spec/fixtures/oauth2/access_with_refresh.json
|
723
|
-
- spec/fixtures/oauth2/authorization_code_body.json
|
724
|
-
- spec/fixtures/oauth2/error.json
|
725
|
-
- spec/fixtures/oauth2/password_body.json
|
726
|
-
- spec/fixtures/oauth2/refresh_body.json
|
727
|
-
- spec/fixtures/oauth2_error.json
|
728
|
-
- spec/fixtures/portal/disable.json
|
729
|
-
- spec/fixtures/portal/enable.json
|
730
|
-
- spec/fixtures/portal/my.json
|
731
|
-
- spec/fixtures/portal/my_non_existant.json
|
732
|
-
- spec/fixtures/portal/new.json
|
733
|
-
- spec/fixtures/portal/post.json
|
734
|
-
- spec/fixtures/property_types/property_types.json
|
735
|
-
- spec/fixtures/rules/get.json
|
736
|
-
- spec/fixtures/saved_searches/get.json
|
659
|
+
- spec/fixtures/listings/with_documents.json
|
660
|
+
- spec/fixtures/listings/reorder_photo.json
|
661
|
+
- spec/fixtures/listings/floplans_index.json
|
662
|
+
- spec/fixtures/listings/tour_of_homes.json
|
663
|
+
- spec/fixtures/listings/put_reorder_photo.json
|
664
|
+
- spec/fixtures/listings/open_houses.json
|
665
|
+
- spec/fixtures/standardfields/stateorprovince.json
|
666
|
+
- spec/fixtures/standardfields/standardfields.json
|
667
|
+
- spec/fixtures/standardfields/city.json
|
668
|
+
- spec/fixtures/standardfields/nearby.json
|
669
|
+
- spec/fixtures/count.json
|
670
|
+
- spec/fixtures/saved_searches/with_inactive_newsfeed.json
|
737
671
|
- spec/fixtures/saved_searches/get_provided.json
|
672
|
+
- spec/fixtures/saved_searches/get.json
|
673
|
+
- spec/fixtures/saved_searches/with_newsfeed.json
|
738
674
|
- spec/fixtures/saved_searches/new.json
|
739
675
|
- spec/fixtures/saved_searches/post.json
|
740
676
|
- spec/fixtures/saved_searches/update.json
|
741
|
-
- spec/fixtures/saved_searches/with_inactive_newsfeed.json
|
742
|
-
- spec/fixtures/saved_searches/with_newsfeed.json
|
743
677
|
- spec/fixtures/saved_searches/without_newsfeed.json
|
744
|
-
- spec/fixtures/
|
745
|
-
- spec/fixtures/
|
678
|
+
- spec/fixtures/idx_links/get.json
|
679
|
+
- spec/fixtures/property_types/property_types.json
|
746
680
|
- spec/fixtures/sharedlinks/success.json
|
747
|
-
- spec/fixtures/
|
748
|
-
- spec/fixtures/standardfields/city.json
|
749
|
-
- spec/fixtures/standardfields/nearby.json
|
750
|
-
- spec/fixtures/standardfields/standardfields.json
|
751
|
-
- spec/fixtures/standardfields/stateorprovince.json
|
752
|
-
- spec/fixtures/success.json
|
753
|
-
- spec/unit/spark_api/authentication/api_auth_spec.rb
|
681
|
+
- spec/fixtures/activities/get.json
|
754
682
|
- spec/unit/spark_api/authentication/base_auth_spec.rb
|
755
|
-
- spec/unit/spark_api/authentication/
|
683
|
+
- spec/unit/spark_api/authentication/api_auth_spec.rb
|
756
684
|
- spec/unit/spark_api/authentication/oauth2_impl/grant_type_base_spec.rb
|
757
685
|
- spec/unit/spark_api/authentication/oauth2_impl/single_session_provider_spec.rb
|
686
|
+
- spec/unit/spark_api/authentication/oauth2_impl/faraday_middleware_spec.rb
|
758
687
|
- spec/unit/spark_api/authentication/oauth2_spec.rb
|
688
|
+
- spec/unit/spark_api/options_hash_spec.rb
|
689
|
+
- spec/unit/spark_api/paginate_spec.rb
|
690
|
+
- spec/unit/spark_api/request_spec.rb
|
759
691
|
- spec/unit/spark_api/authentication_spec.rb
|
760
|
-
- spec/unit/spark_api/
|
692
|
+
- spec/unit/spark_api/primary_array_spec.rb
|
761
693
|
- spec/unit/spark_api/configuration_spec.rb
|
762
|
-
- spec/unit/spark_api/
|
763
|
-
- spec/unit/spark_api/models/
|
764
|
-
- spec/unit/spark_api/models/
|
765
|
-
- spec/unit/spark_api/models/
|
766
|
-
- spec/unit/spark_api/models/
|
694
|
+
- spec/unit/spark_api/models/property_types_spec.rb
|
695
|
+
- spec/unit/spark_api/models/listing_spec.rb
|
696
|
+
- spec/unit/spark_api/models/video_spec.rb
|
697
|
+
- spec/unit/spark_api/models/sort_spec.rb
|
698
|
+
- spec/unit/spark_api/models/finders_spec.rb
|
699
|
+
- spec/unit/spark_api/models/document_spec.rb
|
700
|
+
- spec/unit/spark_api/models/vow_account_spec.rb
|
701
|
+
- spec/unit/spark_api/models/listing_meta_translations_spec.rb
|
702
|
+
- spec/unit/spark_api/models/fields_spec.rb
|
767
703
|
- spec/unit/spark_api/models/concerns/destroyable_spec.rb
|
768
704
|
- spec/unit/spark_api/models/concerns/savable_spec.rb
|
769
|
-
- spec/unit/spark_api/models/
|
770
|
-
- spec/unit/spark_api/models/
|
705
|
+
- spec/unit/spark_api/models/activity_spec.rb
|
706
|
+
- spec/unit/spark_api/models/rule_spec.rb
|
707
|
+
- spec/unit/spark_api/models/listing_cart_spec.rb
|
708
|
+
- spec/unit/spark_api/models/account_report_spec.rb
|
771
709
|
- spec/unit/spark_api/models/contact_spec.rb
|
772
|
-
- spec/unit/spark_api/models/defaultable_spec.rb
|
773
|
-
- spec/unit/spark_api/models/dirty_spec.rb
|
774
|
-
- spec/unit/spark_api/models/document_spec.rb
|
775
710
|
- spec/unit/spark_api/models/email_link_spec.rb
|
776
|
-
- spec/unit/spark_api/models/fields_spec.rb
|
777
|
-
- spec/unit/spark_api/models/finders_spec.rb
|
778
|
-
- spec/unit/spark_api/models/floplan_spec.rb
|
779
|
-
- spec/unit/spark_api/models/listing_cart_spec.rb
|
780
|
-
- spec/unit/spark_api/models/listing_meta_translations_spec.rb
|
781
|
-
- spec/unit/spark_api/models/listing_spec.rb
|
782
|
-
- spec/unit/spark_api/models/message_spec.rb
|
783
|
-
- spec/unit/spark_api/models/news_feed_meta_spec.rb
|
784
|
-
- spec/unit/spark_api/models/newsfeed_spec.rb
|
785
|
-
- spec/unit/spark_api/models/note_spec.rb
|
786
711
|
- spec/unit/spark_api/models/notification_spec.rb
|
787
712
|
- spec/unit/spark_api/models/open_house_spec.rb
|
788
|
-
- spec/unit/spark_api/models/photo_spec.rb
|
789
|
-
- spec/unit/spark_api/models/portal_spec.rb
|
790
|
-
- spec/unit/spark_api/models/property_types_spec.rb
|
791
|
-
- spec/unit/spark_api/models/rental_calendar_spec.rb
|
792
|
-
- spec/unit/spark_api/models/rule_spec.rb
|
793
|
-
- spec/unit/spark_api/models/saved_search_spec.rb
|
794
713
|
- spec/unit/spark_api/models/search_template/quick_search_spec.rb
|
795
|
-
- spec/unit/spark_api/models/
|
796
|
-
- spec/unit/spark_api/models/
|
797
|
-
- spec/unit/spark_api/models/
|
714
|
+
- spec/unit/spark_api/models/constraint_spec.rb
|
715
|
+
- spec/unit/spark_api/models/dirty_spec.rb
|
716
|
+
- spec/unit/spark_api/models/note_spec.rb
|
798
717
|
- spec/unit/spark_api/models/standard_fields_spec.rb
|
718
|
+
- spec/unit/spark_api/models/connect_prefs_spec.rb
|
719
|
+
- spec/unit/spark_api/models/message_spec.rb
|
720
|
+
- spec/unit/spark_api/models/base_spec.rb
|
721
|
+
- spec/unit/spark_api/models/floplan_spec.rb
|
799
722
|
- spec/unit/spark_api/models/subresource_spec.rb
|
800
723
|
- spec/unit/spark_api/models/system_info_spec.rb
|
801
|
-
- spec/unit/spark_api/models/tour_of_home_spec.rb
|
802
|
-
- spec/unit/spark_api/models/video_spec.rb
|
803
724
|
- spec/unit/spark_api/models/virtual_tour_spec.rb
|
804
|
-
- spec/unit/spark_api/models/
|
725
|
+
- spec/unit/spark_api/models/tour_of_home_spec.rb
|
726
|
+
- spec/unit/spark_api/models/shared_link_spec.rb
|
727
|
+
- spec/unit/spark_api/models/photo_spec.rb
|
728
|
+
- spec/unit/spark_api/models/account_spec.rb
|
729
|
+
- spec/unit/spark_api/models/saved_search_spec.rb
|
730
|
+
- spec/unit/spark_api/models/defaultable_spec.rb
|
731
|
+
- spec/unit/spark_api/models/news_feed_meta_spec.rb
|
732
|
+
- spec/unit/spark_api/models/rental_calendar_spec.rb
|
733
|
+
- spec/unit/spark_api/models/shared_listing_spec.rb
|
734
|
+
- spec/unit/spark_api/models/newsfeed_spec.rb
|
735
|
+
- spec/unit/spark_api/models/portal_spec.rb
|
736
|
+
- spec/unit/spark_api/configuration/yaml_spec.rb
|
805
737
|
- spec/unit/spark_api/multi_client_spec.rb
|
806
|
-
- spec/unit/spark_api/
|
807
|
-
- spec/unit/spark_api/paginate_spec.rb
|
808
|
-
- spec/unit/spark_api/primary_array_spec.rb
|
809
|
-
- spec/unit/spark_api/request_spec.rb
|
738
|
+
- spec/unit/spark_api/faraday_middleware_spec.rb
|
810
739
|
- spec/unit/spark_api_spec.rb
|
811
740
|
- spec/spec_helper.rb
|