Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
testing.rs 1019 B
Newer Older
#[cfg(test)]
pub const TEST_JSON_WEBSITE: &'static str = "
{
    \"page_data\": {
        \"title\": \"Test Website\",
        \"slug\": \"\",
        \"lang\": \"en\",
        \"description\": \"A test website\",
        \"html_body\": \"<h1>Test Website</h1>\"
    },
    \"sub_pages\": [
        {
            \"page_data\": {
                \"title\": \"A sub page\",
                \"slug\": \"subpage\",
                \"lang\": \"en\",
                \"description\": \"A sub page of the testing web site\",
                \"html_body\": \"<h1>A sub page</h1>\"
            },
            \"sub_pages\": [
                {
                    \"page_data\": {
                        \"title\": \"Nested page\",
                        \"lang\": \"en\",
                        \"slug\": \"nested\",
                        \"description\": \"Nested testing page\",
                        \"html_body\": \"<h1>Nested page</h1>\"
                    } 
                }
            ]
        }
    ]
}
";