mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-10 14:44:25 +00:00
22 lines
490 B
Rust
22 lines
490 B
Rust
trait AppendBar {
|
|
fn append_bar(self) -> Self;
|
|
}
|
|
|
|
// TODO: Implement the trait `AppendBar` for a vector of strings.
|
|
// `append_bar` should push the string "Bar" into the vector.
|
|
|
|
fn main() {
|
|
// You can optionally experiment here.
|
|
}
|
|
|
|
#[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(), "Bar");
|
|
assert_eq!(foo.pop().unwrap(), "Foo");
|
|
}
|
|
}
|