File: issues_timeline_tests.rs

package info (click to toggle)
rust-octocrab 0.43.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,532 kB
  • sloc: makefile: 2
file content (7 lines) | stat: -rw-r--r-- 229 bytes parent folder | download
1
2
3
4
5
6
7
use octocrab::models::timelines::TimelineEvent;

#[tokio::test]
async fn should_deserialize() {
    let _: Vec<TimelineEvent> =
        serde_json::from_str(include_str!("resources/issues_list_timeline_events.json")).unwrap();
}