(self, ud_proc)
| 774 | |
| 775 | class TestUDProcess: |
| 776 | def test_bytes_in_userdata(self, ud_proc): |
| 777 | msg = b"#cloud-config\napt_update: True\n" |
| 778 | message = ud_proc.process(msg) |
| 779 | assert count_messages(message) == 1 |
| 780 | |
| 781 | def test_string_in_userdata(self, ud_proc): |
| 782 | msg = "#cloud-config\napt_update: True\n" |
nothing calls this directly
no test coverage detected