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>\"
}
}
]
}
]
}
";