2017-12-25 12:22:35 +01:00
|
|
|
/*
|
|
|
|
* This project is licensed under the MIT license. For more information see the
|
|
|
|
* LICENSE file.
|
|
|
|
*/
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#include "gmock/gmock.h"
|
|
|
|
|
|
|
|
#include "maddy/emphasizedparser.h"
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
TEST(MADDY_EMPHASIZEDPARSER, ItReplacesMarkdownWithEmphasizedHTML)
|
|
|
|
{
|
|
|
|
std::string text = "some text *bla* text testing *it* out";
|
|
|
|
std::string expected = "some text <em>bla</em> text testing <em>it</em> out";
|
|
|
|
auto emphasizedParser = std::make_shared<maddy::EmphasizedParser>();
|
|
|
|
|
|
|
|
emphasizedParser->Parse(text);
|
|
|
|
|
|
|
|
ASSERT_EQ(expected, text);
|
|
|
|
}
|
2017-12-25 21:21:59 +01:00
|
|
|
|
|
|
|
TEST(MADDY_EMPHASIZEDPARSER, ItDoesNotParseInsideInlineCode)
|
|
|
|
{
|
2017-12-26 05:24:01 +01:00
|
|
|
std::string text = "some text `*bla*` `/**text*/` testing *it* out";
|
|
|
|
std::string expected = "some text `*bla*` `/**text*/` testing <em>it</em> out";
|
2017-12-25 21:21:59 +01:00
|
|
|
auto emphasizedParser = std::make_shared<maddy::EmphasizedParser>();
|
|
|
|
|
|
|
|
emphasizedParser->Parse(text);
|
|
|
|
|
|
|
|
ASSERT_EQ(expected, text);
|
|
|
|
}
|