Test `HtmlStash.store`.
(self)
| 190 | self.placeholder = self.stash.store('foo') |
| 191 | |
| 192 | def testSimpleStore(self): |
| 193 | """ Test `HtmlStash.store`. """ |
| 194 | self.assertEqual(self.placeholder, self.stash.get_placeholder(0)) |
| 195 | self.assertEqual(self.stash.html_counter, 1) |
| 196 | self.assertEqual(self.stash.rawHtmlBlocks, ['foo']) |
| 197 | |
| 198 | def testStoreMore(self): |
| 199 | """ Test `HtmlStash.store` with additional blocks. """ |
nothing calls this directly
no test coverage detected