mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-07-04 23:32:37 +00:00
first commit
This commit is contained in:
@ -0,0 +1,27 @@
|
||||
# Copyright (c) Jupyter Development Team.
|
||||
# Distributed under the terms of the Modified BSD License.
|
||||
|
||||
from unittest import TestCase
|
||||
|
||||
from ipywidgets.widgets.docutils import doc_subst
|
||||
|
||||
|
||||
class TestDocSubst(TestCase):
|
||||
|
||||
def test_substitution(self):
|
||||
snippets = {'key': '62'}
|
||||
|
||||
@doc_subst(snippets)
|
||||
def f():
|
||||
""" Docstring with value {key} """
|
||||
|
||||
assert f.__doc__ == " Docstring with value 62 "
|
||||
|
||||
def test_unused_keys(self):
|
||||
snippets = {'key': '62', 'other-key': 'unused'}
|
||||
|
||||
@doc_subst(snippets)
|
||||
def f():
|
||||
""" Docstring with value {key} """
|
||||
|
||||
assert f.__doc__ == " Docstring with value 62 "
|
Reference in New Issue
Block a user