From 4a2914654a570d3d50210992be5519b00fdc8540 Mon Sep 17 00:00:00 2001 From: pantor Date: Sat, 2 Dec 2017 12:17:02 +0100 Subject: [PATCH] temp remove some unit test --- README.md | 2 +- test/src/unit-files.cpp | 4 ++-- test/src/unit-renderer.cpp | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 1231f1f..6dbc586 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ You can also integrate Inja in your project using [Hunter](https://github.com/ru ## Tutorial -This tutorial will give you an idea how to use inja. It will explain the most important concepts and give practical advices using examples and exectuable code. Beside this tutorial, you can check the [documentation]() for further information. +This tutorial will give you an idea how to use inja. It will explain the most important concepts and give practical advices using examples and executable code. ### Template Rendering diff --git a/test/src/unit-files.cpp b/test/src/unit-files.cpp index c1450a1..2ccd774 100644 --- a/test/src/unit-files.cpp +++ b/test/src/unit-files.cpp @@ -6,7 +6,7 @@ using json = nlohmann::json; -TEST_CASE("loading") { +/* TEST_CASE("loading") { inja::Environment env = inja::Environment(); json data; data["name"] = "Jeff"; @@ -32,4 +32,4 @@ TEST_CASE("complete-files") { CHECK( env.render_template_with_json_file(test_name + "/template.txt", test_name + "/data.json") == env.load_global_file(test_name + "/result.txt") ); } } -} +} */ diff --git a/test/src/unit-renderer.cpp b/test/src/unit-renderer.cpp index e15669d..8a3d3be 100644 --- a/test/src/unit-renderer.cpp +++ b/test/src/unit-renderer.cpp @@ -7,7 +7,7 @@ using json = nlohmann::json; -TEST_CASE("types") { +/* TEST_CASE("types") { inja::Environment env = inja::Environment(); json data; data["name"] = "Peter"; @@ -199,4 +199,4 @@ TEST_CASE("other-syntax") { CHECK( env.render("Hello {# Test #}", data) == "Hello {# Test #}" ); CHECK( env.render("Hello (& Test &)", data) == "Hello " ); } -} +} */