From aceff9850e4b4418fc75a9338b9d8adfb39fea81 Mon Sep 17 00:00:00 2001 From: Ioannis Filippidis Date: Sat, 22 May 2021 17:33:52 +0200 Subject: [PATCH] DOC: add module docstrings to test scripts and rephrase existing module docstrings. --- tests/autoref_test.py | 1 + tests/bdd_test.py | 1 + tests/copy_test.py | 2 +- tests/cudd_test.py | 1 + tests/cudd_zdd_test.py | 2 +- tests/dddmp_test.py | 1 + tests/mdd_test.py | 2 +- tests/sylvan_test.py | 1 + 8 files changed, 8 insertions(+), 3 deletions(-) diff --git a/tests/autoref_test.py b/tests/autoref_test.py index 29d74461..61321573 100644 --- a/tests/autoref_test.py +++ b/tests/autoref_test.py @@ -1,3 +1,4 @@ +"""Tests of the module `dd.autoref`.""" import logging from dd import autoref as _bdd diff --git a/tests/bdd_test.py b/tests/bdd_test.py index 4c673b8d..cdf17ae1 100644 --- a/tests/bdd_test.py +++ b/tests/bdd_test.py @@ -1,3 +1,4 @@ +"""Tests of the module `dd.bdd`.""" import logging import os diff --git a/tests/copy_test.py b/tests/copy_test.py index 2da157a8..fa641634 100644 --- a/tests/copy_test.py +++ b/tests/copy_test.py @@ -1,4 +1,4 @@ -"""Test module `dd._copy`.""" +"""Tests of the module `dd._copy`.""" from dd import autoref from dd import cudd from dd import _copy diff --git a/tests/cudd_test.py b/tests/cudd_test.py index 01673151..a5f64d2b 100644 --- a/tests/cudd_test.py +++ b/tests/cudd_test.py @@ -1,3 +1,4 @@ +"""Tests of the module `dd.cudd`.""" import logging from dd import cudd diff --git a/tests/cudd_zdd_test.py b/tests/cudd_zdd_test.py index ee97ef64..74f1fa5b 100644 --- a/tests/cudd_zdd_test.py +++ b/tests/cudd_zdd_test.py @@ -1,4 +1,4 @@ -"""Tests for `dd.cudd_zdd`.""" +"""Tests of the module `dd.cudd_zdd`.""" import os from dd import cudd diff --git a/tests/dddmp_test.py b/tests/dddmp_test.py index fcb5f41c..b3208979 100644 --- a/tests/dddmp_test.py +++ b/tests/dddmp_test.py @@ -1,3 +1,4 @@ +"""Tests of the module `dd.dddmp`.""" import logging import os diff --git a/tests/mdd_test.py b/tests/mdd_test.py index 02c03d5f..68c61a66 100644 --- a/tests/mdd_test.py +++ b/tests/mdd_test.py @@ -1,4 +1,4 @@ -"""Test multi-valued decision diagrams.""" +"""Tests of the module `dd.mdd`.""" import logging import dd.mdd diff --git a/tests/sylvan_test.py b/tests/sylvan_test.py index 8de63557..9e29e0e7 100644 --- a/tests/sylvan_test.py +++ b/tests/sylvan_test.py @@ -1,3 +1,4 @@ +"""Tests of the module `dd.sylvan`.""" import logging from dd import sylvan