コード例 #1
0
 def test_docstring(self):
     docstring = create_docstring(
         'Flow_component',
         self.data['props'],
         parse_events(self.data['props']),
         self.data['description'],
     )
     assert_flow_docstring(self.assertEqual, docstring)
コード例 #2
0
ファイル: test_base_component.py プロジェクト: zdog234/dash
 def test_docstring(self):
     docstring = create_docstring(
         'Flow_component',
         self.data['props'],
         parse_events(self.data['props']),
         self.data['description'],
     )
     assert_flow_docstring(self.assertEqual, docstring)
コード例 #3
0
 def test_docstring(self):
     docstring = create_docstring(
         'Table',
         self.data['props'],
         parse_events(self.data['props']),
         self.data['description'],
     )
     assert_docstring(self.assertEqual, docstring)
コード例 #4
0
ファイル: test_base_component.py プロジェクト: zdog234/dash
 def test_docstring(self):
     docstring = create_docstring(
         'Table',
         self.data['props'],
         parse_events(self.data['props']),
         self.data['description'],
     )
     assert_docstring(self.assertEqual, docstring)