Skip to content

Commit

Permalink
Fix building mametest
Browse files Browse the repository at this point in the history
  • Loading branch information
mmicko committed Jun 22, 2021
1 parent 0d57290 commit aa71323
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions tests/lib/util/options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,8 @@

#include "options.h"

TEST_CASE("Empty options should return first as nullptr", "[util]")
TEST_CASE("Empty options should return size of zero", "[util]")
{
core_options options;
REQUIRE(options.first() == nullptr);
}

TEST_CASE("Empty options should have iterators same", "[util]")
{
core_options options;
REQUIRE(options.begin() == options.end());
REQUIRE(options.entries().size() == 0);
}

0 comments on commit aa71323

Please sign in to comment.