i6_timer/
create.rs

1pub fn create_timer(minutes: &str, name: &str) {
2  // Implement the create timer functionality here
3  println!("Creating a timer named '{}' for {} minutes...", name, minutes);
4}
5#[test]
6fn test_create_timer() {
7  let minutes = "10";
8  let name = "test";
9  create_timer(minutes, name);
10  // Add assertions here based on your implementation
11}