Moved tests out of package dir.

This commit is contained in:
Lance Edgar 2013-07-22 19:22:18 -07:00
parent 68650a5488
commit 134613aadd
11 changed files with 7 additions and 7 deletions

View file

@ -1,7 +1,7 @@
from mock import Mock from mock import Mock
from rattail.pyramid.tests import TestCase from .. import TestCase
from rattail.pyramid.forms import simpleform from rattail.pyramid.forms import simpleform

View file

@ -1,7 +1,7 @@
import datetime import datetime
from rattail.pyramid.tests import TestCase from . import TestCase
from rattail.pyramid import helpers from rattail.pyramid import helpers

View file

@ -1,5 +1,5 @@
from rattail.pyramid.tests import TestCase from . import TestCase
class RootTests(TestCase): class RootTests(TestCase):

View file

@ -1,7 +1,7 @@
from mock import Mock from mock import Mock
from rattail.pyramid.tests import TestCase from . import TestCase
from rattail.pyramid import subscribers from rattail.pyramid import subscribers

View file

@ -1,5 +1,5 @@
from rattail.pyramid.tests import TestCase from . import TestCase
class ViewTests(TestCase): class ViewTests(TestCase):

View file

@ -2,7 +2,7 @@
from mock import Mock from mock import Mock
from pyramid import testing from pyramid import testing
from rattail.pyramid.tests import TestCase, mock_query from .. import TestCase, mock_query
from rattail.pyramid.views import autocomplete from rattail.pyramid.views import autocomplete

View file

@ -2,7 +2,7 @@
from mock import Mock from mock import Mock
from pyramid import testing from pyramid import testing
from rattail.pyramid.tests import TestCase, mock_query from .. import TestCase, mock_query
from rattail.pyramid.views import departments from rattail.pyramid.views import departments