()
| 262 | self.Author.objects.insert([a1], load_bulk=False) |
| 263 | |
| 264 | def load_existing_author(): |
| 265 | a = self.Author(name="Bill Shakespeare") |
| 266 | a.save() |
| 267 | self.get_signal_output(lambda: None) # eliminate signal output |
| 268 | _ = self.Author.objects(name="Bill Shakespeare")[0] |
| 269 | |
| 270 | assert self.get_signal_output(create_author) == [ |
| 271 | "pre_init signal, Author", |
nothing calls this directly
no test coverage detected