(self, ud_proc)
| 779 | assert count_messages(message) == 1 |
| 780 | |
| 781 | def test_string_in_userdata(self, ud_proc): |
| 782 | msg = "#cloud-config\napt_update: True\n" |
| 783 | message = ud_proc.process(msg) |
| 784 | assert count_messages(message) == 1 |
| 785 | |
| 786 | def test_compressed_in_userdata(self, ud_proc): |
| 787 | msg = gzip_text("#cloud-config\napt_update: True\n") |
nothing calls this directly
no test coverage detected