summaryrefslogtreecommitdiff
path: root/exercises/15_traits/traits2.rs
diff options
context:
space:
mode:
authorAdam Brewer <adamhb321@gmail.com>2023-10-16 07:37:12 -0400
committerAdam Brewer <adamhb321@gmail.com>2023-10-16 07:37:12 -0400
commit64d95837e9813541cf5b357de13865ce687ae98d (patch)
treef022c5d5ba01128811c0b77618a7adb843ee876b /exercises/15_traits/traits2.rs
parentc3941323e2c0b9ee286494327de92e00f23b9e3a (diff)
Update Exercises Directory Names to Reflect Order
Diffstat (limited to 'exercises/15_traits/traits2.rs')
-rw-r--r--exercises/15_traits/traits2.rs29
1 files changed, 29 insertions, 0 deletions
diff --git a/exercises/15_traits/traits2.rs b/exercises/15_traits/traits2.rs
new file mode 100644
index 0000000..3e35f8e
--- /dev/null
+++ b/exercises/15_traits/traits2.rs
@@ -0,0 +1,29 @@
+// traits2.rs
+//
+// 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"'
+// to a vector of strings.
+//
+// No boiler plate code this time, you can do this!
+//
+// Execute `rustlings hint traits2` or use the `hint` watch subcommand for a hint.
+
+// I AM NOT DONE
+
+trait AppendBar {
+ fn append_bar(self) -> Self;
+}
+
+// TODO: Implement trait `AppendBar` for a vector of strings.
+
+#[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"));
+ }
+}