Skip to content

Commit

Permalink
tests: add luau asserts on remote url tests to help in troubleshooting
Browse files Browse the repository at this point in the history
when those remote resources are not available
  • Loading branch information
jqnatividad committed Nov 24, 2024
1 parent 986a1d3 commit ab204da
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_luau.rs
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,8 @@ END {
.arg("file:testlookup.luau")
.arg("data.csv");

wrk.assert_success(&mut *&mut cmd);

let got: Vec<Vec<String>> = wrk.read_stdout(&mut cmd);
let expected = vec![
svec!["letter", "Amount", "Running Total"],
Expand Down Expand Up @@ -599,6 +601,8 @@ END {
.arg("file:testlookup.luau")
.arg("data.csv");

wrk.assert_success(&mut *&mut cmd);

let got: Vec<Vec<String>> = wrk.read_stdout(&mut cmd);
let expected = vec![
svec!["letter", "Amount", "Running Total"],
Expand Down

0 comments on commit ab204da

Please sign in to comment.