Skip to content

Commit

Permalink
Remove old tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ndem0 committed Jan 22, 2021
1 parent 102556d commit 990650c
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions tests/test_package.py
Expand Up @@ -6,23 +6,6 @@


class TestPackage(TestCase):
def test_modules_name(self):
# it checks that __all__ includes all the .py files in dmd folder
import pydmd
package = pydmd

f_aux = []
for (__, __, filenames) in walk('pydmd'):
f_aux.extend(filenames)

f = []
for i in f_aux:
file_name, file_ext = path.splitext(i)
if file_name != '__init__' and file_ext == '.py':
f.append(file_name)

assert (sorted(package.__all__) == sorted(f))

def test_import_dm_1(self):
import pydmd as dm
dmd = dm.dmd.DMDBase()
Expand Down

0 comments on commit 990650c

Please sign in to comment.