mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-10 06:34:20 +00:00
test_dir is a str anyway
This commit is contained in:
parent
140c4e4812
commit
479f45da9b
1 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,5 @@
|
|||
use std::{
|
||||
env::{self, consts::EXE_SUFFIX},
|
||||
fs,
|
||||
process::{Command, Stdio},
|
||||
str::from_utf8,
|
||||
};
|
||||
|
@ -156,7 +155,6 @@ fn hint() {
|
|||
#[test]
|
||||
fn init() {
|
||||
let test_dir = tempfile::TempDir::new().unwrap();
|
||||
let initialized_dir = test_dir.path().join("rustlings");
|
||||
let test_dir = test_dir.path().to_str().unwrap();
|
||||
|
||||
Cmd::default().current_dir(test_dir).fail();
|
||||
|
@ -173,9 +171,11 @@ fn init() {
|
|||
.output(PartialStderr("`cd rustlings`"))
|
||||
.fail();
|
||||
|
||||
let initialized_dir = format!("{test_dir}/rustlings");
|
||||
|
||||
// Running `init` in the initialized directory.
|
||||
Cmd::default()
|
||||
.current_dir(initialized_dir.to_str().unwrap())
|
||||
.current_dir(&initialized_dir)
|
||||
.args(&["init"])
|
||||
.output(PartialStderr("already initialized"))
|
||||
.fail();
|
||||
|
|
Loading…
Reference in a new issue