rustlings/exercises/15_traits/traits2.rs

28 lines
693 B
Rust
Raw Normal View History

// Your task is to implement the trait `AppendBar` for a vector of strings. To
// implement this trait, consider for a moment what it means to 'append "Bar"'
2020-02-25 12:48:50 +03:00
// to a vector of strings.
//
// No boiler plate code this time, you can do this!
2020-02-25 12:48:50 +03:00
trait AppendBar {
fn append_bar(self) -> Self;
}
2022-11-24 22:39:54 +03:00
// TODO: Implement trait `AppendBar` for a vector of strings.
2020-02-25 12:48:50 +03:00
fn main() {
// You can optionally experiment here.
}
2020-02-25 12:48:50 +03:00
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn is_vec_pop_eq_bar() {
let mut foo = vec![String::from("Foo")].append_bar();
assert_eq!(foo.pop().unwrap(), String::from("Bar"));
assert_eq!(foo.pop().unwrap(), String::from("Foo"));
}
2020-02-25 14:00:09 +03:00
}