renamed package.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
from unittest import TestCase
|
||||
|
||||
from abc import ABCMeta, abstractmethod
|
||||
from pypatterns.creational.builder import Director, Builder
|
||||
from pypat.creational.builder import Director, Builder
|
||||
|
||||
|
||||
class BuilderTestCase(TestCase):
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
from unittest import TestCase
|
||||
|
||||
from pypatterns.creational.factory import Factory, AbstractFactory
|
||||
from pypat.creational.factory import Factory, AbstractFactory
|
||||
|
||||
|
||||
class FactoryTestCase(TestCase):
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
from unittest import TestCase
|
||||
|
||||
from copy import deepcopy
|
||||
from pypatterns.creational.pool import Reusable, Pool
|
||||
from pypat.creational.pool import Reusable, Pool
|
||||
|
||||
|
||||
class ReusableTestCase(TestCase):
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
from math import sqrt
|
||||
from unittest import TestCase
|
||||
|
||||
from pypatterns.creational.prototype import Prototype
|
||||
from pypat.creational.prototype import Prototype
|
||||
|
||||
|
||||
class PrototypeTestCase(TestCase):
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
from unittest import TestCase
|
||||
from pypatterns.creational.singleton import Singleton
|
||||
from pypat.creational.singleton import Singleton
|
||||
|
||||
|
||||
class SingletonTestCase(TestCase):
|
||||
|
||||
Reference in New Issue
Block a user