Skip to content

Commit

Permalink
Fix merge issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Jan 29, 2024
1 parent 870f52d commit fa19f47
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions src/shell/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -599,23 +599,6 @@ async fn redirects_input() {
.await;
}

#[tokio::test]
async fn redirects_input() {
TestBuilder::new()
.file("test.txt", "Hi!")
.command(r#"cat - < test.txt"#)
.assert_stdout("Hi!")
.run()
.await;

TestBuilder::new()
.file("test.txt", "Hi!\n")
.command(r#"cat - < test.txt && echo There"#)
.assert_stdout("Hi!\nThere\n")
.run()
.await;
}

#[tokio::test]
async fn pwd() {
TestBuilder::new()
Expand Down

0 comments on commit fa19f47

Please sign in to comment.