()
| 88 | |
| 89 | #[test] |
| 90 | fn require_async_after_epochs() -> Result<()> { |
| 91 | let mut config = Config::new(); |
| 92 | config.epoch_interruption(true); |
| 93 | let engine = Engine::new(&config)?; |
| 94 | let mut store = Store::new(&engine, ()); |
| 95 | store.epoch_deadline_async_yield_and_update(1); |
| 96 | assert_requires_async(&mut store); |
| 97 | Ok(()) |
| 98 | } |
| 99 | |
| 100 | #[test] |
| 101 | fn require_async_after_fuel() -> Result<()> { |
nothing calls this directly
no test coverage detected