Skip to content

Commit

Permalink
added empty env var check to tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
klemens-morgenstern committed Jun 26, 2023
1 parent 0427fe3 commit cb5b5a2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/v2/environment.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ BOOST_AUTO_TEST_CASE(environment)
ec.clear();

for (auto && ke : bpe::current())
BOOST_CHECK_EQUAL(bpe::get(std::get<0>(ke)), std::get<1>(ke));
if (!std::get<1>(ke).empty())
BOOST_CHECK_EQUAL(bpe::get(std::get<0>(ke)), std::get<1>(ke));


#if defined(BOOST_PROCESS_V2_POSIX)
Expand Down

0 comments on commit cb5b5a2

Please sign in to comment.