1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-11-25 14:27:33 +00:00

Rename %loadJSON to %load_json

This commit is contained in:
Arnaud Roques 2022-08-26 18:06:31 +02:00
parent 6809546c65
commit 3af1fb7180

View File

@ -34,7 +34,7 @@ class LoadJsonTest {
// ************ Test DSL data // ************ Test DSL data
private static final String DIAGRAM = "" + private static final String DIAGRAM = "" +
"@startuml\n" + "@startuml\n" +
"!$JSON_DATA=%loadJSON(test.json)\n" + "!$JSON_DATA=%load_json(test.json)\n" +
// title should have the value from the JSON file // title should have the value from the JSON file
"title $JSON_DATA.jsonTestKey\n" + "title $JSON_DATA.jsonTestKey\n" +
@ -44,7 +44,7 @@ class LoadJsonTest {
private static final String DIAGRAM_DEF = "" + private static final String DIAGRAM_DEF = "" +
"@startuml\n" + "@startuml\n" +
"!$DEF_JSON=" + DEF_JSON + "\n" + "!$DEF_JSON=" + DEF_JSON + "\n" +
"!$JSON_DATA=%loadJSON(\"test-notfound.json\", $DEF_JSON)\n" + "!$JSON_DATA=%load_json(\"test-notfound.json\", $DEF_JSON)\n" +
// title should have the value from the default (because the file doesn't exist) // title should have the value from the default (because the file doesn't exist)
"title $JSON_DATA.jsonTestKey\n" + "title $JSON_DATA.jsonTestKey\n" +
@ -53,7 +53,7 @@ class LoadJsonTest {
private static final String DIAGRAM_DEF_EMPTY = "" + private static final String DIAGRAM_DEF_EMPTY = "" +
"@startuml\n" + "@startuml\n" +
"!$JSON_DATA=%loadJSON(\"test-notfound.json\")\n" + "!$JSON_DATA=%load_json(\"test-notfound.json\")\n" +
// JSON_DATA is defined, but empty (loadJSON default). So, title contains only "xx yy". // JSON_DATA is defined, but empty (loadJSON default). So, title contains only "xx yy".
"title xx $JSON_DATA.jsonTestKey yy\n" + "title xx $JSON_DATA.jsonTestKey yy\n" +
"a -> b\n" + "a -> b\n" +