File tree 2 files changed +25
-1
lines changed
camply/providers/usedirect
2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -304,11 +304,12 @@ def get_campsites_response(
304
304
-------
305
305
UseDirectAvailabilityResponse
306
306
"""
307
+ greatest_start = max (start_date , date .today () - timedelta (days = 1 ))
307
308
data = {
308
309
"IsADA" : is_ada ,
309
310
"MinVehicleLength" : min_vehicle_length ,
310
311
"UnitCategoryId" : unit_category_id ,
311
- "StartDate" : start_date .strftime (UseDirectConfig .DATE_FORMAT ),
312
+ "StartDate" : greatest_start .strftime (UseDirectConfig .DATE_FORMAT ),
312
313
"WebOnly" : web_only ,
313
314
"UnitTypesGroupIds" : []
314
315
if unit_type_group_ids is None
Original file line number Diff line number Diff line change
1
+ """
2
+ Debugging Script
3
+ """
4
+
5
+ from tests .conftest import CamplyRunner
6
+
7
+
8
+ def test_debug_usedirect (cli_runner : CamplyRunner ) -> None :
9
+ """
10
+ Debug the Camply CLI - ReserveCalifornia - UseDirect
11
+
12
+ https://reservecalifornia.com/Web/#!park/726/737
13
+ """
14
+ test_command = """
15
+ camply \
16
+ campsites \
17
+ --provider ReserveCalifornia \
18
+ --campground 737 \
19
+ --start-date 2024-04-29 \
20
+ --end-date 2024-04-30
21
+ """
22
+ result = cli_runner .run_camply_command (command = test_command )
23
+ assert result .exit_code == 0
You can’t perform that action at this time.
0 commit comments