Skip to content

Commit

Permalink
Add additional test for stringifing cfm
Browse files Browse the repository at this point in the history
  • Loading branch information
Aonokishi committed Sep 1, 2024
1 parent b086660 commit 497916d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/plugins/test_debug.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,3 +110,8 @@ def test_stringify_cfm():
)
print(stringify_cfm(cfm))
assert cfm_str in stringify_cfm(cfm)


def test_stringify_cfm_can_stringify_none_cfm():
cfm_str = "CFM:\nNone"
assert cfm_str in stringify_cfm(None)

0 comments on commit 497916d

Please sign in to comment.