mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-24 13:22:19 +08:00
15 lines
302 B
Rust
15 lines
302 B
Rust
|
use blog::Post;
|
||
|
|
||
|
fn main() {
|
||
|
let mut post = Post::new();
|
||
|
|
||
|
post.add_text("I ate a salad for lunch today");
|
||
|
assert_eq!("", post.content());
|
||
|
|
||
|
post.request_review();
|
||
|
assert_eq!("", post.content());
|
||
|
|
||
|
post.approve();
|
||
|
assert_eq!("I ate a salad for lunch today", post.content());
|
||
|
}
|