ミラー元
https://github.com/quitesimpleorg/qsmaddy.git
前回の同期 2024-11-14 12:27:52 +01:00
23 行
634 B
C++
23 行
634 B
C++
/*
|
|
* This project is licensed under the MIT license. For more information see the
|
|
* LICENSE file.
|
|
*/
|
|
#include <memory>
|
|
|
|
#include "gmock/gmock.h"
|
|
|
|
#include "maddy/strikethroughparser.h"
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
TEST(MADDY_STRIKETHROUGHPARSER, ItReplacesMarkdownWithStrikeThroughHTML)
|
|
{
|
|
std::string text = "some text ~~bla~~ text testing ~~it~~ out";
|
|
std::string expected = "some text <s>bla</s> text testing <s>it</s> out";
|
|
auto strikeThroughParser = std::make_shared<maddy::StrikeThroughParser>();
|
|
|
|
strikeThroughParser->Parse(text);
|
|
|
|
ASSERT_EQ(expected, text);
|
|
}
|