serenity 0.3.0

A Rust library for the Discord API.
Documentation
#![cfg(feature="utils")]

#[macro_use] extern crate serde_json;
extern crate serenity;

use serde_json::Value;
use serenity::model::{Embed, EmbedField, EmbedImage};
use serenity::utils::builder::CreateEmbed;
use serenity::utils::Colour;

#[test]
fn test_from_embed() {
    let embed = Embed {
        author: None,
        colour: Colour::new(0xFF0011),
        description: Some("This is a test description".to_owned()),
        fields: vec![
            EmbedField {
                inline: false,
                name: "a".to_owned(),
                value: "b".to_owned(),
            },
            EmbedField {
                inline: true,
                name: "c".to_owned(),
                value: "z".to_owned(),
            },
        ],
        footer: None,
        image: Some(EmbedImage {
            height: 213,
            proxy_url: "a".to_owned(),
            url: "https://i.imgur.com/XfWpfCV.gif".to_owned(),
            width: 224,
        }),
        kind: "rich".to_owned(),
        provider: None,
        thumbnail: None,
        timestamp: None,
        title: Some("hakase".to_owned()),
        url: Some("https://i.imgur.com/XfWpfCV.gif".to_owned()),
        video: None,
    };

    let builder = CreateEmbed::from(embed)
        .colour(0xFF0011)
        .description("This is a hakase description")
        .image("https://i.imgur.com/XfWpfCV.gif")
        .title("still a hakase")
        .url("https://i.imgur.com/XfWpfCV.gif");

    let built = Value::Object(builder.0);

    let obj = json!({
        "color": 0xFF0011,
        "description": "This is a hakase description",
        "title": "still a hakase",
        "type": "rich",
        "url": "https://i.imgur.com/XfWpfCV.gif",
        "fields": [
            {
                "inline": false,
                "name": "a",
                "value": "b",
            },
            {
                "inline": true,
                "name": "c",
                "value": "z",
            },
        ],
        "image": {
            "url": "https://i.imgur.com/XfWpfCV.gif",
        },
    });

    assert_eq!(built, obj);
}