File: test_namespacing.py

package info (click to toggle)
beaker 1.13.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 716 kB
  • sloc: python: 6,036; makefile: 62
file content (13 lines) | stat: -rw-r--r-- 253 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
import os
import sys


def teardown_module():
    import shutil
    shutil.rmtree('./cache', True)


def test_consistent_namespacing():
    sys.path.append(os.path.dirname(__file__))
    from tests.test_namespacing_files.namespace_go import go
    go()