• Home
  • Raw
  • Download

Lines Matching refs:dt

545     let dt = FixedOffset::east(34200).ymd(2001, 7, 8).and_hms_nano(0, 34, 59, 1_026_490_708);  in test_strftime_docs()  localVariable
548 assert_eq!(dt.format("%Y").to_string(), "2001"); in test_strftime_docs()
549 assert_eq!(dt.format("%C").to_string(), "20"); in test_strftime_docs()
550 assert_eq!(dt.format("%y").to_string(), "01"); in test_strftime_docs()
551 assert_eq!(dt.format("%m").to_string(), "07"); in test_strftime_docs()
552 assert_eq!(dt.format("%b").to_string(), "Jul"); in test_strftime_docs()
553 assert_eq!(dt.format("%B").to_string(), "July"); in test_strftime_docs()
554 assert_eq!(dt.format("%h").to_string(), "Jul"); in test_strftime_docs()
555 assert_eq!(dt.format("%d").to_string(), "08"); in test_strftime_docs()
556 assert_eq!(dt.format("%e").to_string(), " 8"); in test_strftime_docs()
557 assert_eq!(dt.format("%e").to_string(), dt.format("%_d").to_string()); in test_strftime_docs()
558 assert_eq!(dt.format("%a").to_string(), "Sun"); in test_strftime_docs()
559 assert_eq!(dt.format("%A").to_string(), "Sunday"); in test_strftime_docs()
560 assert_eq!(dt.format("%w").to_string(), "0"); in test_strftime_docs()
561 assert_eq!(dt.format("%u").to_string(), "7"); in test_strftime_docs()
562 assert_eq!(dt.format("%U").to_string(), "28"); in test_strftime_docs()
563 assert_eq!(dt.format("%W").to_string(), "27"); in test_strftime_docs()
564 assert_eq!(dt.format("%G").to_string(), "2001"); in test_strftime_docs()
565 assert_eq!(dt.format("%g").to_string(), "01"); in test_strftime_docs()
566 assert_eq!(dt.format("%V").to_string(), "27"); in test_strftime_docs()
567 assert_eq!(dt.format("%j").to_string(), "189"); in test_strftime_docs()
568 assert_eq!(dt.format("%D").to_string(), "07/08/01"); in test_strftime_docs()
569 assert_eq!(dt.format("%x").to_string(), "07/08/01"); in test_strftime_docs()
570 assert_eq!(dt.format("%F").to_string(), "2001-07-08"); in test_strftime_docs()
571 assert_eq!(dt.format("%v").to_string(), " 8-Jul-2001"); in test_strftime_docs()
574 assert_eq!(dt.format("%H").to_string(), "00"); in test_strftime_docs()
575 assert_eq!(dt.format("%k").to_string(), " 0"); in test_strftime_docs()
576 assert_eq!(dt.format("%k").to_string(), dt.format("%_H").to_string()); in test_strftime_docs()
577 assert_eq!(dt.format("%I").to_string(), "12"); in test_strftime_docs()
578 assert_eq!(dt.format("%l").to_string(), "12"); in test_strftime_docs()
579 assert_eq!(dt.format("%l").to_string(), dt.format("%_I").to_string()); in test_strftime_docs()
580 assert_eq!(dt.format("%P").to_string(), "am"); in test_strftime_docs()
581 assert_eq!(dt.format("%p").to_string(), "AM"); in test_strftime_docs()
582 assert_eq!(dt.format("%M").to_string(), "34"); in test_strftime_docs()
583 assert_eq!(dt.format("%S").to_string(), "60"); in test_strftime_docs()
584 assert_eq!(dt.format("%f").to_string(), "026490708"); in test_strftime_docs()
585 assert_eq!(dt.format("%.f").to_string(), ".026490708"); in test_strftime_docs()
586 assert_eq!(dt.with_nanosecond(1_026_490_000).unwrap().format("%.f").to_string(), ".026490"); in test_strftime_docs()
587 assert_eq!(dt.format("%.3f").to_string(), ".026"); in test_strftime_docs()
588 assert_eq!(dt.format("%.6f").to_string(), ".026490"); in test_strftime_docs()
589 assert_eq!(dt.format("%.9f").to_string(), ".026490708"); in test_strftime_docs()
590 assert_eq!(dt.format("%3f").to_string(), "026"); in test_strftime_docs()
591 assert_eq!(dt.format("%6f").to_string(), "026490"); in test_strftime_docs()
592 assert_eq!(dt.format("%9f").to_string(), "026490708"); in test_strftime_docs()
593 assert_eq!(dt.format("%R").to_string(), "00:34"); in test_strftime_docs()
594 assert_eq!(dt.format("%T").to_string(), "00:34:60"); in test_strftime_docs()
595 assert_eq!(dt.format("%X").to_string(), "00:34:60"); in test_strftime_docs()
596 assert_eq!(dt.format("%r").to_string(), "12:34:60 AM"); in test_strftime_docs()
600 assert_eq!(dt.format("%z").to_string(), "+0930"); in test_strftime_docs()
601 assert_eq!(dt.format("%:z").to_string(), "+09:30"); in test_strftime_docs()
604 assert_eq!(dt.format("%c").to_string(), "Sun Jul 8 00:34:60 2001"); in test_strftime_docs()
605 assert_eq!(dt.format("%+").to_string(), "2001-07-08T00:34:60.026490708+09:30"); in test_strftime_docs()
607 dt.with_nanosecond(1_026_490_000).unwrap().format("%+").to_string(), in test_strftime_docs()
610 assert_eq!(dt.format("%s").to_string(), "994518299"); in test_strftime_docs()
613 assert_eq!(dt.format("%t").to_string(), "\t"); in test_strftime_docs()
614 assert_eq!(dt.format("%n").to_string(), "\n"); in test_strftime_docs()
615 assert_eq!(dt.format("%%").to_string(), "%"); in test_strftime_docs()
623 let dt = FixedOffset::east(34200).ymd(2001, 7, 8).and_hms_nano(0, 34, 59, 1_026_490_708); in test_strftime_docs_localized() localVariable
626 assert_eq!(dt.format_localized("%b", Locale::fr_BE).to_string(), "jui"); in test_strftime_docs_localized()
627 assert_eq!(dt.format_localized("%B", Locale::fr_BE).to_string(), "juillet"); in test_strftime_docs_localized()
628 assert_eq!(dt.format_localized("%h", Locale::fr_BE).to_string(), "jui"); in test_strftime_docs_localized()
629 assert_eq!(dt.format_localized("%a", Locale::fr_BE).to_string(), "dim"); in test_strftime_docs_localized()
630 assert_eq!(dt.format_localized("%A", Locale::fr_BE).to_string(), "dimanche"); in test_strftime_docs_localized()
631 assert_eq!(dt.format_localized("%D", Locale::fr_BE).to_string(), "07/08/01"); in test_strftime_docs_localized()
632 assert_eq!(dt.format_localized("%x", Locale::fr_BE).to_string(), "08/07/01"); in test_strftime_docs_localized()
633 assert_eq!(dt.format_localized("%F", Locale::fr_BE).to_string(), "2001-07-08"); in test_strftime_docs_localized()
634 assert_eq!(dt.format_localized("%v", Locale::fr_BE).to_string(), " 8-jui-2001"); in test_strftime_docs_localized()
637 assert_eq!(dt.format_localized("%P", Locale::fr_BE).to_string(), ""); in test_strftime_docs_localized()
638 assert_eq!(dt.format_localized("%p", Locale::fr_BE).to_string(), ""); in test_strftime_docs_localized()
639 assert_eq!(dt.format_localized("%R", Locale::fr_BE).to_string(), "00:34"); in test_strftime_docs_localized()
640 assert_eq!(dt.format_localized("%T", Locale::fr_BE).to_string(), "00:34:60"); in test_strftime_docs_localized()
641 assert_eq!(dt.format_localized("%X", Locale::fr_BE).to_string(), "00:34:60"); in test_strftime_docs_localized()
642 assert_eq!(dt.format_localized("%r", Locale::fr_BE).to_string(), "12:34:60 "); in test_strftime_docs_localized()
646 dt.format_localized("%c", Locale::fr_BE).to_string(), in test_strftime_docs_localized()