(self)
| 762 | ) |
| 763 | |
| 764 | def supports_transactions(self): |
| 765 | if self.version.at_least(4, 1, 8): |
| 766 | return self.is_mongos or self.is_rs |
| 767 | |
| 768 | if self.version.at_least(4, 0): |
| 769 | return self.is_rs |
| 770 | |
| 771 | return False |
| 772 | |
| 773 | def require_transactions(self, func): |
| 774 | """Run a test only if the deployment might support transactions. |