initial release 1.0.0

This commit is contained in:
M. Petra Baranski
2017-12-25 12:22:35 +01:00
commit 569794c4b6
46 changed files with 4073 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
/*
* This project is licensed under the MIT license. For more information see the
* LICENSE file.
*/
#include "gmock/gmock.h"
#include "maddy/parser.h"
#include "maddy/test_maddy_parser.h"
// -----------------------------------------------------------------------------
TEST(MADDY_PARSER, ItShouldParse)
{
auto parser = std::make_shared<maddy::Parser>();
std::stringstream markdown(testMarkdown);
const std::string output = parser->Parse(markdown);
ASSERT_EQ(testHtml, output);
}