예제 #1
0
파일: test_core.py 프로젝트: de8ug/nider
 def test_setting_color_without_color(self):
     Outline._set_color(self.outline_mock, None)
     self.assertIsNone(self.outline_mock.color)
예제 #2
0
파일: test_core.py 프로젝트: de8ug/nider
 def test_setting_color_with_color_provided(self):
     Outline._set_color(self.outline_mock, '#000')
     self.assertEqual(self.outline_mock.color, (0, 0, 0))