Moved bok-choy page objects and setup.py to common/test/bok_choy

This commit is contained in:
Will Daly
2013-12-20 22:37:45 -05:00
parent b1eff059a7
commit 9462183ae2
20 changed files with 4 additions and 10 deletions

View File

@@ -1,6 +0,0 @@
Common test infrastructure for LMS + CMS
===========================
data/ has some test course data.
Once the course validation is separated from django, we should have scripts here that checks that a course consists only of xml that we understand.

View File

@@ -1,16 +1,16 @@
#!/usr/bin/env python
"""
Install Selenium page objects for acceptance and end-to-end tests.
Install bok-choy page objects for acceptance and end-to-end tests.
"""
from setuptools import setup
VERSION = '0.0.1'
DESCRIPTION = "Selenium page objects for edx-platform"
DESCRIPTION = "Bok-choy page objects for edx-platform"
setup(
name='edx-selenium-pages',
name='edxapp-pages',
version=VERSION,
author='edX',
url='http://github.com/edx/edx-platform',
@@ -25,5 +25,5 @@ setup(
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Quality Assurance'
],
packages=['edxapp_selenium_pages']
packages=['edxapp_pages.lms', 'edxapp_pages.studio']
)