From 17b89265985ea10f2fb0d0e82eefc6f516d98234 Mon Sep 17 00:00:00 2001 From: beeth0ven Date: Tue, 5 Jul 2022 09:52:01 +0800 Subject: [PATCH] improve `scope` type test --- test/scopes/scopes/scope_test.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/scopes/scopes/scope_test.dart b/test/scopes/scopes/scope_test.dart index 84ff409..bdb4c74 100644 --- a/test/scopes/scopes/scope_test.dart +++ b/test/scopes/scopes/scope_test.dart @@ -6,11 +6,13 @@ import '../../toolbox/mock_configurable.dart'; void main() { - test('`scope` is `ScopeGet`', () { + test('`scope` is `ScopeGet`, `ScopePush` and `Disposable`', () { final scope = _MockScope(); expect(scope, isA()); + expect(scope, isA()); + expect(scope, isA()); }); test('`Scope.root` return sync scope if it only has sync configuration', () {