()
| 328 | |
| 329 | #[test] |
| 330 | fn create_and_get_org() { |
| 331 | let store = OrgStore::new(); |
| 332 | store.create_org("acme", "Acme Corp", 1).unwrap(); |
| 333 | let org = store.get("acme").unwrap(); |
| 334 | assert_eq!(org.name, "Acme Corp"); |
| 335 | assert_eq!(org.status, "active"); |
| 336 | } |
| 337 | |
| 338 | #[test] |
| 339 | fn set_org_status() { |
nothing calls this directly
no test coverage detected