diff options
| author | Zeyla Hellyer <[email protected]> | 2018-05-21 17:43:06 -0700 |
|---|---|---|
| committer | Zeyla Hellyer <[email protected]> | 2018-05-21 17:43:47 -0700 |
| commit | 0e1e8fbbe564c23530a709a7ec407b08f63944e2 (patch) | |
| tree | 4ec7ff0903ba1911180dd9a0bcf90b1bad608086 /tests/test_deser.rs | |
| parent | Add `rls/` dir to .gitignore (diff) | |
| download | serenity-0e1e8fbbe564c23530a709a7ec407b08f63944e2.tar.xz serenity-0e1e8fbbe564c23530a709a7ec407b08f63944e2.zip | |
Add `Message::member` structfield
Adds the `Message::member` structfield, which contains a partial amount
of member data (deaf and mute status, role IDs, and joined_at).
Diffstat (limited to 'tests/test_deser.rs')
| -rw-r--r-- | tests/test_deser.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test_deser.rs b/tests/test_deser.rs index e547e9d..70b6f1f 100644 --- a/tests/test_deser.rs +++ b/tests/test_deser.rs @@ -126,6 +126,9 @@ fn message_create() { // negative nonce p!(MessageCreateEvent, "message_create_2"); + + // message from guild with partial member data + p!(MessageCreateEvent, "message_create_3"); } #[test] |