Commit 110cf7b9e7d330bd919e84a542858a45bfbed768

Authored by alexdiatlov
Committed by GitHub
2 parents f6428074 c4db4c10

Merge pull request #121 from ProzorroUKR/scale

CS-2447 Scale
@@ -383,13 +383,13 @@ def test_feature_data(): @@ -383,13 +383,13 @@ def test_feature_data():
383 383
384 384
385 def test_question_data(): 385 def test_question_data():
386 - return munchify({  
387 - "data": {  
388 - "author": fake.procuringTenderer(),  
389 - "description": fake.description(),  
390 - "title": field_with_id("q", fake.title())  
391 - }  
392 - }) 386 + data = {
  387 + "author": fake.procuringTenderer(),
  388 + "description": fake.description(),
  389 + "title": field_with_id("q", fake.title())
  390 + }
  391 + del data['author']['scale']
  392 + return munchify({'data': data})
393 393
394 394
395 def test_related_question(question, relation, obj_id): 395 def test_related_question(question, relation, obj_id):
@@ -406,14 +406,13 @@ def test_question_answer_data(): @@ -406,14 +406,13 @@ def test_question_answer_data():
406 406
407 407
408 def test_complaint_data(): 408 def test_complaint_data():
409 - data = munchify({  
410 - "data": {  
411 - "author": fake.procuringTenderer(),  
412 - "description": fake.description(),  
413 - "title": fake.title()  
414 - }  
415 - })  
416 - return data 409 + data = {
  410 + "author": fake.procuringTenderer(),
  411 + "description": fake.description(),
  412 + "title": field_with_id("q", fake.title())
  413 + }
  414 + del data['author']['scale']
  415 + return munchify({'data': data})
417 416
418 417
419 test_claim_data = test_complaint_data 418 test_claim_data = test_complaint_data
@@ -471,7 +470,7 @@ def test_bid_competitive_data(): @@ -471,7 +470,7 @@ def test_bid_competitive_data():
471 bid = munchify({ 470 bid = munchify({
472 "data": { 471 "data": {
473 "tenderers": [ 472 "tenderers": [
474 - fake.procuringEntity() 473 + fake.procuringTenderer()
475 ] 474 ]
476 } 475 }
477 }) 476 })
@@ -550,7 +549,7 @@ def test_supplier_data(): @@ -550,7 +549,7 @@ def test_supplier_data():
550 return munchify({ 549 return munchify({
551 "data": { 550 "data": {
552 "suppliers": [ 551 "suppliers": [
553 - fake.procuringEntity() 552 + fake.procuringTenderer()
554 ], 553 ],
555 "value": { 554 "value": {
556 "amount": fake.random_int(min=1), 555 "amount": fake.random_int(min=1),
@@ -739,6 +739,7 @@ @@ -739,6 +739,7 @@
739 "id": "21725150", 739 "id": "21725150",
740 "legalName": "Тестова районна в місті Києві державна адміністрація" 740 "legalName": "Тестова районна в місті Києві державна адміністрація"
741 }, 741 },
  742 + "scale": "micro",
742 "name": "Тестова районна в місті Києві державна адміністрація", 743 "name": "Тестова районна в місті Києві державна адміністрація",
743 "address": { 744 "address": {
744 "postalCode": "01111", 745 "postalCode": "01111",
@@ -761,6 +762,7 @@ @@ -761,6 +762,7 @@
761 "id": "2833906462", 762 "id": "2833906462",
762 "legalName": "Тестовий ФОП 1" 763 "legalName": "Тестовий ФОП 1"
763 }, 764 },
  765 + "scale": "sme",
764 "name": "Тестовий ФОП 1", 766 "name": "Тестовий ФОП 1",
765 "address": { 767 "address": {
766 "postalCode": "01111", 768 "postalCode": "01111",
@@ -783,6 +785,7 @@ @@ -783,6 +785,7 @@
783 "id": "2894905868", 785 "id": "2894905868",
784 "legalName": "Тестовий ФОП 2" 786 "legalName": "Тестовий ФОП 2"
785 }, 787 },
  788 + "scale": "mid",
786 "name": "Тестовий ФОП 2", 789 "name": "Тестовий ФОП 2",
787 "address": { 790 "address": {
788 "postalCode": "04444", 791 "postalCode": "04444",
@@ -805,6 +808,7 @@ @@ -805,6 +808,7 @@
805 "id": "2854913619", 808 "id": "2854913619",
806 "legalName": "Тестовий ФОП 3" 809 "legalName": "Тестовий ФОП 3"
807 }, 810 },
  811 + "scale": "large",
808 "name": "Тестовий ФОП 3", 812 "name": "Тестовий ФОП 3",
809 "address": { 813 "address": {
810 "postalCode": "01111", 814 "postalCode": "01111",
Please register or login to post a comment