File: test_module.py

package info (click to toggle)
python-django-extensions 4.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,812 kB
  • sloc: python: 18,601; javascript: 7,354; makefile: 108; xml: 17
file content (10 lines) | stat: -rw-r--r-- 182 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
# -*- coding: utf-8 -*-
from tests.testapp.classes_to_include import IncludedMixin


class ClassWhichShouldNotBeImported:
    pass


class ThirdDerivedClass(IncludedMixin):
    pass