{% extends 'devtools/base.html' %} {% block title %}Functions - DevTools{% endblock %} {% block content %}

Functions tester

{% if app_name %}
Application: {{ app_name }}
{% if functions %}
{% for function in functions %}
{{ function.name }}

Signature:
{{ function.signature }}

{{ function.doc|truncatewords:15 }}

{% endfor %}
{% else %}
No function found in the module {{ app_name }}.utils
{% endif %}
{% else %}

Select an application

Choose an application to explore its utility functions.

{% endif %}
Custom test
Results

Execute code to see results here

Useful examples
Import and test a function
Test with error handling
Performance test
Test with mocks
{% endblock %} {% block extra_js %} {% endblock %}