(self)
| 637 | assert format_environment(env_dict) == ['ARTIST_NAME=송지은'] |
| 638 | |
| 639 | def test_format_env_no_value(self): |
| 640 | env_dict = { |
| 641 | 'FOO': None, |
| 642 | 'BAR': '', |
| 643 | } |
| 644 | assert sorted(format_environment(env_dict)) == ['BAR=', 'FOO'] |
| 645 | |
| 646 | |
| 647 | def test_compare_versions(): |
nothing calls this directly
no test coverage detected