spogulis no
https://github.com/quitesimpleorg/qsmaddy.git
synced 2024-11-05 17:24:38 +01:00
22 rindas
497 B
C++
22 rindas
497 B
C++
/*
|
|
* 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);
|
|
}
|