From 34fa7e6f93186e6ddb5db39c38d8de995eed825a Mon Sep 17 00:00:00 2001
From: Taras Kozlovskyi <ktarasz@quintagroup.com>
Date: Tue, 24 Feb 2015 14:30:58 +0200
Subject: [PATCH] Added requirements and added translations

---
 op_robot_tests/tests_files/initial_data.py | 7 +++++++
 setup.py                                   | 4 ++++
 2 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/op_robot_tests/tests_files/initial_data.py b/op_robot_tests/tests_files/initial_data.py
index ac63702..3ed92c0 100644
--- a/op_robot_tests/tests_files/initial_data.py
+++ b/op_robot_tests/tests_files/initial_data.py
@@ -4,13 +4,20 @@ now = datetime.now()
 from munch import munchify
 from faker import Factory
 fake = Factory.create('uk_UA')
+fake_ru = Factory.create('ru')
+fake_en = Factory.create()
 
 test_tender_data = {
     "title": fake.catch_phrase(),
     "mode": "test",
     "submissionMethodDetails": "quick",
+    "description": "Тестовий тендер",
+    "description_en": "Test tender",
+    "description_ru": "Тестовый тендер",
     "procuringEntity": {
         "name": fake.company(),
+        "name_ru": fake_ru.company(),
+        "name_en": fake_en.company(),
         "identifier": {
             "scheme": u"UA-EDR",
             "id": u"0000{}".format(fake.pyint()),
diff --git a/setup.py b/setup.py
index 76ade2c..e591a36 100644
--- a/setup.py
+++ b/setup.py
@@ -20,6 +20,10 @@ setup(name='op_robot_tests',
       install_requires=[
           # -*- Extra requirements: -*-
           'robotframework',
+          'robotframework-selenium2library',
+          'robotframework-debuglibrary',
+          'robotframework-selenium2screenshots',
+          'Pillow',
           'iso8601',
           'PyYAML',
           'munch',
--
libgit2 0.24.0