summaryrefslogtreecommitdiff
path: root/info.toml
diff options
context:
space:
mode:
authorAbdou Seck <djily02016@gmail.com>2020-06-04 10:31:17 -0400
committerAbdou Seck <djily02016@gmail.com>2020-06-04 11:18:26 -0400
commit8ad5f9bf531a4848b1104b7b389a20171624c82f (patch)
tree331c5d3725140b07d836ed8be6df30c8ddfd63fb /info.toml
parent02a2fe48714a4546b28d38fb611e6bfce9f43cf6 (diff)
feat: Add a --nocapture option to display test harnesses' outputs
This new feature can be accessed by invoking rustlings with --nocapture. Both unit and integration tests added. closes #262 BREAKING CHANGES: The following function take a new boolean argument: * `run` * `verify` * `test` * `compile_and_test`
Diffstat (limited to 'info.toml')
-rw-r--r--info.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/info.toml b/info.toml
index 2c871ad..2f0884c 100644
--- a/info.toml
+++ b/info.toml
@@ -802,7 +802,7 @@ name = "try_from_into"
path = "exercises/conversions/try_from_into.rs"
mode = "test"
hint = """
-Follow the steps provided right before the `From` implementation.
+Follow the steps provided right before the `TryFrom` implementation.
You can also use the example at https://doc.rust-lang.org/std/convert/trait.TryFrom.html"""
[[exercises]]
@@ -819,4 +819,4 @@ mode = "test"
hint = """
The implementation of FromStr should return an Ok with a Person object,
or an Err with a string if the string is not valid.
-This is a some like an `try_from_into` exercise."""
+This is almost like the `try_from_into` exercise."""