# Test template for Date/Time edge cases
# Test ID: gen_file_template_8

## Testing Date/Time Edge Cases

### Zero Offsets
NOW with zero offset: 2026-02-27 12:26:18
MONTHDELTA with zero offset: 2026-02-27 12:26:18

### Large Positive Offsets
NOW +365 days (1 year ahead): 2027-02-27
NOW +730 days (2 years ahead): 2028-02-27
MONTHDELTA +24 months (2 years ahead): 2028-02-27
MONTHDELTA +60 months (5 years ahead): 2031-02

### Large Negative Offsets
NOW -365 days (1 year ago): 2025-02-27
NOW -1095 days (3 years ago): 2023-02-28
MONTHDELTA -24 months (2 years ago): 2024-02-27
MONTHDELTA -36 months (3 years ago): 2023-02

### Various Date Format Strings
ISO 8601 basic: 20260227
ISO 8601 extended: 2026-02-27T12:26:18
ISO 8601 with timezone: 2026-02-27T12:26:18+00:00
Unix timestamp style: 20260227122618
Human readable: Friday, February 27, 2026
Date only: 2026-02-27
Time only: 12:26:18
Year and month: 2026-02
Month and day: 02-27
Custom format 1: 27/02/2026 12:26
Custom format 2: 2026.02.27.12.26.18
Custom format 3: February 27, 2026 at 12:26 PM

### MONTHDELTA with Various Formats
Month delta ISO: 2026-08-27T12:26:18+01:00
Month delta basic: 20251127
Month delta date only: 2027-02-27
Month delta first of month: 2026-03-01T00:00:00Z

### Combined Edge Cases
Far future NOW: 2036-02-25 (10 years ahead)
Far past NOW: 2016-03-01 (10 years ago)
Far future MONTHDELTA: 2036-02 (10 years ahead)
Far past MONTHDELTA: 2016-02 (10 years ago)

### Boundary Testing
Small positive offset: 2026-02-28
Small negative offset: 2026-02-26
MONTHDELTA +1: 2026-03-01
MONTHDELTA -1: 2026-01-01

# End of file
