test_usermanager.py 文件源码

python
阅读 30 收藏 0 点赞 0 评论 0

项目:ownbot 作者: michaelimfeld 项目源码 文件源码
def test_load_config(self):
        """
            Test loading of the config attribute
        """
        usrmgr = self.__get_dummy_object()
        with patch("os.path.exists", return_value=True),\
                patch("ownbot.usermanager.open") as open_mock:

            open_mock.return_value = io.BytesIO(b"""
foogroup:
  unverified:
    - '@foouser'""")

            expected_config = {"foogroup": {"unverified": ["@foouser"]}}

            self.assertEqual(usrmgr.config, expected_config)
            self.assertTrue(open_mock.called)
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号