diff --git a/mockfirestore/client.py b/mockfirestore/client.py index 75943bd..e39d82e 100644 --- a/mockfirestore/client.py +++ b/mockfirestore/client.py @@ -59,4 +59,7 @@ def get_all(self, references: Iterable[DocumentReference], def transaction(self, **kwargs) -> Transaction: return Transaction(self, **kwargs) + def batch(self) -> Transaction: + return Transaction(self) +