()
| 188 | |
| 189 | #[test] |
| 190 | fn delete_function() { |
| 191 | let catalog = make_catalog(); |
| 192 | catalog.put_function(&sample_function(1, "f")).unwrap(); |
| 193 | assert!(catalog.delete_function(1, "f").unwrap()); |
| 194 | assert!(!catalog.delete_function(1, "f").unwrap()); |
| 195 | assert!(catalog.get_function(1, "f").unwrap().is_none()); |
| 196 | } |
| 197 | |
| 198 | #[test] |
| 199 | fn load_for_tenant_filters() { |
nothing calls this directly
no test coverage detected