mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-10-31 13:15:43 +00:00 
			
		
		
		
	fix docstrings
This commit is contained in:
		| @@ -83,7 +83,10 @@ class BaseNotificationTests(BaseNotificationIntegrationTest): | ||||
| class BulkNotificationMethodTests(BaseNotificationIntegrationTest): | ||||
|  | ||||
|     def test_BulkNotificationMethod(self): | ||||
|         """ensure the implementation requirements are tested""" | ||||
|         """ | ||||
|         Ensure the implementation requirements are tested. | ||||
|         NotImplementedError needs to raise if the send_bulk() method is not set. | ||||
|         """ | ||||
|  | ||||
|         class WrongImplementation(BulkNotificationMethod): | ||||
|             METHOD_NAME = 'WrongImplementationBulk' | ||||
| @@ -98,7 +101,10 @@ class BulkNotificationMethodTests(BaseNotificationIntegrationTest): | ||||
| class SingleNotificationMethodTests(BaseNotificationIntegrationTest): | ||||
|  | ||||
|     def test_SingleNotificationMethod(self): | ||||
|         """ensure the implementation requirements are tested""" | ||||
|         """ | ||||
|         Ensure the implementation requirements are tested. | ||||
|         NotImplementedError needs to raise if the send() method is not set. | ||||
|         """ | ||||
|  | ||||
|         class WrongImplementation(SingleNotificationMethod): | ||||
|             METHOD_NAME = 'WrongImplementationSingle' | ||||
|   | ||||
		Reference in New Issue
	
	Block a user