wego 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 67f9ab57e395e8e11bf14d3f17c347d1f67190c5
4
- data.tar.gz: 9d6642730695c89e77cac92835ef37912235df72
3
+ metadata.gz: af58bf962cd2fbfa922eb201889b6583ad83d8f6
4
+ data.tar.gz: 8d00f570cbb98a78cf040f8dbcab9203b77bf9ab
5
5
  SHA512:
6
- metadata.gz: ac7545ac958e602b1ce498ef3f1c014fd95c59f7cb16bb1f836ff950ea11e10430c2e16b72724a95ad9f59d0678ef617410b5518925e622b6d8237022659b7ea
7
- data.tar.gz: 6104f6ee44167bb19abf4e5e2149588ba76c9c905e625a8b2f04cab0dcbd3622542e2befadc6e51c96cded3bbccc4b5b7385f92e148154acf0b47b3966f7da00
6
+ metadata.gz: 8b5da6c82c7c7e4fcc89ab55a69be3f3ffe267dbedbb248149dc83112829b926e6790b7331bfe6b4e616d1e6c7c30163cb28a24a384828acaa7b077d665a3d4a
7
+ data.tar.gz: 25c6657964c62d6f00247e6769c96c70f2f10d2d70c834533ebf9eece90ed768cc00dc64e7e45a3861d8c8ae52804ccc6584d27c9d2172c3c6666d44d60e9cfc
data/README.md CHANGED
@@ -178,6 +178,42 @@ test helpers.
178
178
  require "wego/rspec"
179
179
  ```
180
180
 
181
+ ##### Find a location
182
+
183
+ ```ruby
184
+ stub_get_location_api(q: location_name, lang: 1, page: 1, per_page: 10)
185
+ ```
186
+
187
+ ##### Create a new search
188
+
189
+ ```ruby
190
+ stub_new_search_api(search_term_as_hash)
191
+ ```
192
+
193
+ ##### Search results
194
+
195
+ ```ruby
196
+ stub_search_results_api(search_id, additional_option_hash)
197
+ ```
198
+
199
+ ##### Search result (Hotel)
200
+
201
+ ```ruby
202
+ stub_search_result_api(search_id: search_id, hotel_id: hotel_id, **options)
203
+ ```
204
+
205
+ ##### Invalid search result
206
+
207
+ ```ruby
208
+ stub_invalid_search_result_api(option_hash)
209
+ ```
210
+
211
+ ##### Invalid API response
212
+
213
+ ```ruby
214
+ stub_invalid_api_response(status: status_code)
215
+ ```
216
+
181
217
  ## Contributing
182
218
 
183
219
  First, thank you for contributing! We love pull requests from everyone. By
@@ -1,3 +1,3 @@
1
1
  module Wego
2
- VERSION = "0.1.3".freeze
2
+ VERSION = "0.1.4".freeze
3
3
  end
@@ -11,9 +11,20 @@ module FakeWegoApi
11
11
  stub_api_response("search/#{search_id}", options, filename: "results")
12
12
  end
13
13
 
14
- def stub_search_result_api(search_id:, hotel_id:)
14
+ def stub_search_result_api(search_id:, hotel_id:, **options)
15
15
  stub_api_response(
16
- "search/#{search_id}", { hotel_id: hotel_id }, filename: "result"
16
+ "search/#{search_id}",
17
+ options.merge(hotel_id: hotel_id),
18
+ filename: "result"
19
+ )
20
+ end
21
+
22
+ def stub_invalid_search_result_api(search_id:, hotel_id:, **options)
23
+ stub_api_response(
24
+ "search/#{search_id}",
25
+ options.merge(hotel_id: hotel_id),
26
+ filename: "error",
27
+ status: 400
17
28
  )
18
29
  end
19
30
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wego
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Abu Nashir
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-07-18 00:00:00.000000000 Z
11
+ date: 2016-07-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client