Rebranded to Tailbone.

This commit is contained in:
Lance Edgar 2013-09-01 07:27:47 -07:00
parent 47944767dc
commit 40efd8a3bc
111 changed files with 188 additions and 209 deletions

View file

@ -2,7 +2,7 @@
from mock import Mock
from .. import TestCase
from rattail.pyramid.forms import simpleform
from tailbone.forms import simpleform
class FormRendererTests(TestCase):

View file

@ -2,7 +2,7 @@
import datetime
from . import TestCase
from rattail.pyramid import helpers
from tailbone import helpers
class HelpersTests(TestCase):

View file

@ -8,4 +8,4 @@ class RootTests(TestCase):
"""
def test_includeme(self):
self.config.include('rattail.pyramid')
self.config.include('tailbone')

View file

@ -2,7 +2,7 @@
from mock import Mock
from . import TestCase
from rattail.pyramid import subscribers
from tailbone import subscribers
class SubscribersTests(TestCase):

View file

@ -8,4 +8,4 @@ class ViewTests(TestCase):
"""
def test_includeme(self):
self.config.include('rattail.pyramid.views')
self.config.include('tailbone.views')

View file

@ -3,7 +3,7 @@ from mock import Mock
from pyramid import testing
from .. import TestCase, mock_query
from rattail.pyramid.views import autocomplete
from tailbone.views import autocomplete
class BareAutocompleteViewTests(TestCase):

View file

@ -3,7 +3,7 @@ from mock import Mock
from pyramid import testing
from .. import TestCase, mock_query
from rattail.pyramid.views import departments
from tailbone.views import departments
class DepartmentsGridTests(TestCase):

View file

@ -1,2 +1,2 @@
from rattail.pyramid.views import reports
from tailbone.views import reports