Skip to content

Commit

Permalink
appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
skypjack committed Aug 18, 2019
1 parent ae2da44 commit e761d8a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/entt/entity/helper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@ TEST(Helper, Dependency) {
registry.remove<int>(entity);
registry.remove<double>(entity);
registry.remove<float>(entity);

ASSERT_FALSE(registry.has<int>(entity));
ASSERT_FALSE(registry.has<double>(entity));
ASSERT_FALSE(registry.has<float>(entity));

entt::disconnect<double, float>(registry.on_construct<int>());
registry.assign<int>(entity);

Expand Down

0 comments on commit e761d8a

Please sign in to comment.