Lines Matching refs:expect_eq
137 use test::expect_eq;
153 expect_eq!(store.get(KEY1), Ok(Some(SECRET1.to_vec()))); in test_secretkeeper_store()
154 expect_eq!(store.get(KEY2), Ok(None)); in test_secretkeeper_store()
156 expect_eq!(store.get(KEY1), Ok(Some(SECRET2.to_vec()))); in test_secretkeeper_store()
157 expect_eq!(store.get(KEY2), Ok(None)); in test_secretkeeper_store()
159 expect_eq!(store.get(KEY1), Ok(Some(SECRET1.to_vec()))); in test_secretkeeper_store()
160 expect_eq!(store.get(KEY2), Ok(None)); in test_secretkeeper_store()
162 expect_eq!(store.get(KEY1), Ok(Some(SECRET1.to_vec()))); in test_secretkeeper_store()
163 expect_eq!(store.get(KEY2), Ok(Some(SECRET1.to_vec()))); in test_secretkeeper_store()
165 expect_eq!(store.get(KEY1), Ok(None)); in test_secretkeeper_store()
166 expect_eq!(store.get(KEY2), Ok(Some(SECRET1.to_vec()))); in test_secretkeeper_store()
168 expect_eq!(store.get(KEY1), Ok(None)); in test_secretkeeper_store()
169 expect_eq!(store.get(KEY2), Ok(None)); in test_secretkeeper_store()