Skip to content

Commit

Permalink
Integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
andrzejressel committed Mar 17, 2024
1 parent aa06b08 commit 0063fbb
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions examples/simple/tests/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ use serde_json::{json, Value};
#[test]
fn test_integration() -> Result<(), anyhow::Error> {

Command::new("pulumi")
.args(["stack", "init", "test"])
.env("PULUMI_CONFIG_PASSPHRASE", " ")
.current_dir(".")
.assert()
.success();

Command::new("pulumi")
.args(["stack", "select", "test"])
.current_dir(".")
Expand Down

0 comments on commit 0063fbb

Please sign in to comment.