From 971f40813fcd894abf4e529a6a0e036e284050ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Forment?= Date: Sat, 31 Jan 2026 17:37:00 +0100 Subject: [PATCH] Remove emit_n tests (feature not implemented) --- tests/forth/temporal.rs | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/tests/forth/temporal.rs b/tests/forth/temporal.rs index 1f1196d..16fba9e 100644 --- a/tests/forth/temporal.rs +++ b/tests/forth/temporal.rs @@ -145,25 +145,6 @@ fn cycle_with_sounds() { } } -#[test] -fn emit_n_basic() { - let outputs = expect_outputs(r#""kick" s 4 .!"#, 4); - let sounds = get_sounds(&outputs); - assert_eq!(sounds, vec!["kick", "kick", "kick", "kick"]); -} - -#[test] -fn emit_n_zero() { - let outputs = expect_outputs(r#""kick" s 0 .!"#, 0); - assert!(outputs.is_empty()); -} - -#[test] -fn emit_n_negative_error() { - let f = forth(); - let result = f.evaluate(r#""kick" s -1 .!"#, &default_ctx()); - assert!(result.is_err()); -} #[test] fn at_single_delta() {