From 1b9dcbfe0b5e9e070b28fbd6e9c91058d0485509 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Thu, 16 Apr 2026 14:15:23 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=AA=20Add=20test=20for=20curriculum=5F?= =?UTF-8?q?document=5Fsystem?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: dynamikdev <717692+dynamikdev@users.noreply.github.com> --- src/constants.rs | 4 ++++ src/ui/mod.rs | 2 ++ src/ui/systems_test.rs | 30 ++++++++++++++++++++++++++++++ 3 files changed, 36 insertions(+) create mode 100644 src/ui/systems_test.rs diff --git a/src/constants.rs b/src/constants.rs index 059a806..a0bace7 100644 --- a/src/constants.rs +++ b/src/constants.rs @@ -60,5 +60,9 @@ pub static CURRICULUM_MANIFEST: Lazy(); + // Ensure that the document successfully cycles to the next one in the manifest + assert_eq!(curr_state.selected_document, Some("Doc B".to_string())); + } +}