renamed package to pypattyrn

This commit is contained in:
tylerlaberge
2016-09-10 22:06:11 -04:00
parent bf8dd3830b
commit 3d5efea9b0
143 changed files with 16151 additions and 567 deletions

View File

@@ -1,7 +1,7 @@
from unittest import TestCase
from abc import ABCMeta, abstractmethod
from pypat.creational.builder import Director, Builder
from pypattyrn.creational.builder import Director, Builder
class BuilderTestCase(TestCase):

View File

@@ -1,6 +1,6 @@
from unittest import TestCase
from pypat.creational.factory import Factory, AbstractFactory
from pypattyrn.creational.factory import Factory, AbstractFactory
class FactoryTestCase(TestCase):

View File

@@ -1,7 +1,7 @@
from unittest import TestCase
from copy import deepcopy
from pypat.creational.pool import Reusable, Pool
from pypattyrn.creational.pool import Reusable, Pool
class ReusableTestCase(TestCase):

View File

@@ -1,7 +1,7 @@
from math import sqrt
from unittest import TestCase
from pypat.creational.prototype import Prototype
from pypattyrn.creational.prototype import Prototype
class PrototypeTestCase(TestCase):

View File

@@ -1,5 +1,5 @@
from unittest import TestCase
from pypat.creational.singleton import Singleton
from pypattyrn.creational.singleton import Singleton
class SingletonTestCase(TestCase):