Skip to content

Commit

Permalink
adjust tests for parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
edulauer committed Jun 21, 2024
1 parent 188578d commit fff4eaa
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion tests/parsers_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ def test_hash_dag_id(yaml_parser, dag_id, size, hashed):
"owner": "",
"hide_filters": False,
"header_text": None,
"footer_text": None,
},
),
(
Expand Down Expand Up @@ -111,6 +112,7 @@ def test_hash_dag_id(yaml_parser, dag_id, size, hashed):
"owner": "pessoa 1, pessoa 2",
"hide_filters": False,
"header_text": None,
"footer_text": None,
},
),
(
Expand Down Expand Up @@ -155,6 +157,7 @@ def test_hash_dag_id(yaml_parser, dag_id, size, hashed):
"owner": "",
"hide_filters": False,
"header_text": None,
"footer_text": None,
},
),
(
Expand Down Expand Up @@ -192,6 +195,7 @@ def test_hash_dag_id(yaml_parser, dag_id, size, hashed):
"owner": "",
"hide_filters": False,
"header_text": None,
"footer_text": None,
},
),
(
Expand Down Expand Up @@ -241,6 +245,7 @@ def test_hash_dag_id(yaml_parser, dag_id, size, hashed):
"owner": "",
"hide_filters": False,
"header_text": None,
"footer_text": None,
},
),
(
Expand Down Expand Up @@ -281,6 +286,7 @@ def test_hash_dag_id(yaml_parser, dag_id, size, hashed):
"owner": "",
"hide_filters": False,
"header_text": None,
"footer_text": None,
},
),
(
Expand Down Expand Up @@ -318,6 +324,7 @@ def test_hash_dag_id(yaml_parser, dag_id, size, hashed):
"owner": "cdata",
"hide_filters": False,
"header_text": None,
"footer_text": None,
},
),
(
Expand Down Expand Up @@ -358,6 +365,7 @@ def test_hash_dag_id(yaml_parser, dag_id, size, hashed):
"owner": "cdata",
"hide_filters": False,
"header_text": None,
"footer_text": None,
},
),
(
Expand Down Expand Up @@ -419,6 +427,7 @@ def test_hash_dag_id(yaml_parser, dag_id, size, hashed):
"owner": "",
"hide_filters": False,
"header_text": None,
"footer_text": None,
},
),
(
Expand Down Expand Up @@ -459,6 +468,7 @@ def test_hash_dag_id(yaml_parser, dag_id, size, hashed):
"owner": "",
"hide_filters": True,
"header_text": None,
"footer_text": None,
},
),
(
Expand Down Expand Up @@ -498,7 +508,8 @@ def test_hash_dag_id(yaml_parser, dag_id, size, hashed):
"dag_tags": {"dou", "generated_dag"},
"owner": "",
"hide_filters": False,
"header_text": "<p><strong>Greetings<strong></p>"
"header_text": "<p><strong>Greetings<strong></p>",
"footer_text": "<p>Best Regards</p>",
},
),
],
Expand Down

0 comments on commit fff4eaa

Please sign in to comment.