Skip to content

Commit

Permalink
Update app_meta.yaml due to new transferring plugin (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
Scandie authored and leits committed Jun 6, 2018
1 parent 59bd42a commit a6c132a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
4 changes: 3 additions & 1 deletion openprocurement/auctions/dgf/tests/app_meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
plugins:
api:
plugins:
auctions.transferring:
transferring:
plugins:
auctions.transferring:
auctions.core:
plugins:
auctions.dgf.financial:
Expand Down
9 changes: 8 additions & 1 deletion openprocurement/auctions/dgf/tests/transferring.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# -*- coding: utf-8 -*-
import unittest

from openprocurement.auctions.dgf.tests.base import BaseAuctionWebTest
from openprocurement.auctions.core.tests.plugins.transferring.mixins import AuctionOwnershipChangeTestCaseMixin
from openprocurement.auctions.core.tests.plugins.transferring.mixins import (
AuctionOwnershipChangeTestCaseMixin
)


class AuctionOwnershipChangeResourceTest(BaseAuctionWebTest,
AuctionOwnershipChangeTestCaseMixin):
Expand All @@ -8,6 +14,7 @@ def setUp(self):
super(AuctionOwnershipChangeResourceTest, self).setUp()
self.not_used_transfer = self.create_transfer()


def suite():
tests = unittest.TestSuite()
tests.addTest(unittest.makeSuite(AuctionOwnershipChangeResourceTest))
Expand Down

0 comments on commit a6c132a

Please sign in to comment.