15 lines
281 B
Rust
15 lines
281 B
Rust
fn intro() -> &'static str {
|
|
// TODO: fix me 👇
|
|
"I'm ready to start modelling a software ticket!"
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use crate::intro;
|
|
|
|
#[test]
|
|
fn test_intro() {
|
|
assert_eq!(intro(), "I'm ready to start modelling a software ticket!");
|
|
}
|
|
}
|