mirror of
https://github.com/rust-lang-cn/book-cn.git
synced 2025-02-02 23:38:41 +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());
|
|
}
|