def test__build_iresubst_dict_2(self): """_build_iresubst_dict({'xxx' : 'yyy', 'vvv' : 'www'}) should == {'yyy' : '${xxx}', 'www' : '${vvv}'}""" self.assertEqual(tested._build_iresubst_dict({'xxx' : 'yyy', 'vvv' : 'www'}), {'yyy' : '${xxx}', 'www' : '${vvv}'})
def test__build_iresubst_dict_1(self): """_build_iresubst_dict({}) should == {}""" self.assertEqual(tested._build_iresubst_dict({}),{})