about summary refs log tree commit diff
path: root/tests/source
diff options
context:
space:
mode:
authorNick Cameron <nrc@ncameron.org>2017-04-06 21:26:13 +1200
committerGitHub <noreply@github.com>2017-04-06 21:26:13 +1200
commitbdcb8d663e6b413e7a837cf5eeff5b8b78f722b6 (patch)
tree156dd174962d756aa9174006ec6a5f4b00f8db29 /tests/source
parentfa732ede8bd8fbce31209d5c6ecb7b0d3a966eb4 (diff)
parent8d22e85e48bf46b3056b8e0173940a8bb4f69c31 (diff)
Merge pull request #1438 from topecongiro/poor-formatting/method-chains
Lookup the last element of 'subexpr_list' instead of the first one
Diffstat (limited to 'tests/source')
-rw-r--r--tests/source/chains-visual.rs29
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/source/chains-visual.rs b/tests/source/chains-visual.rs
index f0be8acdce9..198691d82b5 100644
--- a/tests/source/chains-visual.rs
+++ b/tests/source/chains-visual.rs
@@ -115,3 +115,32 @@ fn issue587() {
 
     std::mem::transmute(dl.symbol::<()>("init").unwrap())
 }
+
+fn issue_1389() {
+    let names = String::from_utf8(names)?.split('|').map(str::to_owned).collect();
+}
+
+fn issue1217() -> Result<Mnemonic, Error> {
+let random_chars: String = OsRng::new()?
+    .gen_ascii_chars()
+    .take(self.bit_length)
+    .collect();
+
+    Ok(Mnemonic::new(&random_chars))
+}
+
+fn issue1236(options: Vec<String>) -> Result<Option<String>> {
+let process = Command::new("dmenu").stdin(Stdio::piped())
+    .stdout(Stdio::piped())
+    .spawn()
+    .chain_err(|| "failed to spawn dmenu")?;
+}
+
+fn issue1434() {
+    for _ in 0..100 {
+        let prototype_id = PrototypeIdData::from_reader::<_, B>(&mut self.file_cursor).chain_err(|| {
+            format!("could not read prototype ID at offset {:#010x}",
+                    current_offset)
+        })?;
+    }
+}