1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

tests: make error handling the same as the main function (#15825)

This commit is contained in:
yuyi
2022-09-22 00:45:43 +08:00
committed by GitHub
parent 391ac12fe2
commit 41dbd12bc4
69 changed files with 193 additions and 192 deletions

View File

@@ -1,6 +1,6 @@
import time
fn test_add_to_day_in_the_previous_century() ? {
fn test_add_to_day_in_the_previous_century() {
a := time.parse_iso8601('1900-01-01')?
aa := a.add_days(180)
dump(a.debug())
@@ -8,25 +8,25 @@ fn test_add_to_day_in_the_previous_century() ? {
assert aa.ymmdd() == '1900-06-30'
}
fn test_add_to_day_in_the_past() ? {
fn test_add_to_day_in_the_past() {
a := time.parse_iso8601('1990-03-01')?
aa := a.add_days(180)
assert aa.ymmdd() == '1990-08-28'
}
fn test_add_to_day_in_the_recent_past() ? {
fn test_add_to_day_in_the_recent_past() {
a := time.parse_iso8601('2021-03-01')?
aa := a.add_days(180)
assert aa.ymmdd() == '2021-08-28'
}
fn test_add_to_day_in_the_future_1() ? {
fn test_add_to_day_in_the_future_1() {
a := time.parse_iso8601('3000-11-01')?
aa := a.add_days(180)
assert aa.ymmdd() == '3001-04-30'
}
fn test_add_to_day_in_the_future_2() ? {
fn test_add_to_day_in_the_future_2() {
a := time.parse_iso8601('3000-12-30')?
aa := a.add_days(180)
assert aa.ymmdd() == '3001-06-28'