[Checkins] SVN: zc.selenium/trunk/ moved readme up and added long_Description

Christian Zagrodnick cz at gocept.com
Mon Jan 19 08:10:57 EST 2009


Log message for revision 94839:
  moved readme up and added long_Description
  

Changed:
  A   zc.selenium/trunk/README.txt
  U   zc.selenium/trunk/setup.py
  D   zc.selenium/trunk/src/zc/selenium/README.txt

-=-
Copied: zc.selenium/trunk/README.txt (from rev 94568, zc.selenium/trunk/src/zc/selenium/README.txt)
===================================================================
--- zc.selenium/trunk/README.txt	                        (rev 0)
+++ zc.selenium/trunk/README.txt	2009-01-19 13:10:56 UTC (rev 94839)
@@ -0,0 +1,40 @@
+===========================
+Selenium testing for Zope 3
+===========================
+
+This package provides an easy way to use Selenium tests for Zope 3
+applications.  It provides Selenium itself as a resource directory,
+and it provides a test suite listing generated from registered views,
+allowing different packages to provide tests without a central list of
+tests to be maintained.
+
+Selenium test views can also be written in Python using the
+`zc.selenium.pytest` module.  This can make tests substantially easier
+to write.
+
+The file pytest.txt explains how to write tests using the Python format.
+
+The package also provides a test runner that:
+
+- Runs a Zope instance
+
+- Starts a local browser, if necessary,
+
+- Tells the local browser to run the tests.
+
+See selenium.txt to see how to set up and use the test runner.
+
+Selenium Issues
+---------------
+
+There is a known issue in the included version of Selenium; this
+affects clicking on images in MSIE.  The Selenium bug report for this
+problem is here:
+
+    http://jira.openqa.org/browse/SRC-99
+
+A patch in the file is provided in the file:
+
+    Selenium-Core-SRC-99.patch
+
+It is not known whether this patch should always be applied.


Property changes on: zc.selenium/trunk/README.txt
___________________________________________________________________
Added: svn:mime-type
   + text/plain
Added: svn:mergeinfo
   + 
Added: svn:eol-style
   + native

Modified: zc.selenium/trunk/setup.py
===================================================================
--- zc.selenium/trunk/setup.py	2009-01-19 13:09:31 UTC (rev 94838)
+++ zc.selenium/trunk/setup.py	2009-01-19 13:10:56 UTC (rev 94839)
@@ -7,6 +7,9 @@
     author_email='info at zope.com',
     url='http://svn.zope.org/zc.seleinum',
     description="Selenium integration for Zope 3",
+    long_description=(open('README.txt').read()
+                        + '\n\n'
+                        + open('CHANGES.txt').read()),
     packages=find_packages('src'),
     package_dir = {'': 'src'},
     include_package_data=True,

Deleted: zc.selenium/trunk/src/zc/selenium/README.txt
===================================================================
--- zc.selenium/trunk/src/zc/selenium/README.txt	2009-01-19 13:09:31 UTC (rev 94838)
+++ zc.selenium/trunk/src/zc/selenium/README.txt	2009-01-19 13:10:56 UTC (rev 94839)
@@ -1,40 +0,0 @@
-===========================
-Selenium testing for Zope 3
-===========================
-
-This package provides an easy way to use Selenium tests for Zope 3
-applications.  It provides Selenium itself as a resource directory,
-and it provides a test suite listing generated from registered views,
-allowing different packages to provide tests without a central list of
-tests to be maintained.
-
-Selenium test views can also be written in Python using the
-`zc.selenium.pytest` module.  This can make tests substantially easier
-to write.
-
-The file pytest.txt explains how to write tests using the Python format.
-
-The package also provides a test runner that:
-
-- Runs a Zope instance
-
-- Starts a local browser, if necessary,
-
-- Tells the local browser to run the tests.
-
-See selenium.txt to see how to set up and use the test runner.
-
-Selenium Issues
----------------
-
-There is a known issue in the included version of Selenium; this
-affects clicking on images in MSIE.  The Selenium bug report for this
-problem is here:
-
-    http://jira.openqa.org/browse/SRC-99
-
-A patch in the file is provided in the file:
-
-    Selenium-Core-SRC-99.patch
-
-It is not known whether this patch should always be applied.



More information about the Checkins mailing list