3 new revisions:

Revision: 79fecd166def
Author:   Anssi Syrjäsalo <[email protected]>
Date:     Wed Jul 10 07:05:37 2013
Log:      Fixed indent
http://code.google.com/p/robotframework-sshlibrary/source/detail?r=79fecd166def

Revision: c3d8058f8582
Author:   Anssi Syrjäsalo <[email protected]>
Date:     Thu Jul 11 06:04:26 2013
Log:      Fixed indent
http://code.google.com/p/robotframework-sshlibrary/source/detail?r=c3d8058f8582

Revision: 07dbd127daab
Author:   Anssi Syrjäsalo <[email protected]>
Date:     Thu Jul 11 06:04:37 2013
Log:      Combined tests
http://code.google.com/p/robotframework-sshlibrary/source/detail?r=07dbd127daab

==============================================================================
Revision: 79fecd166def
Author:   Anssi Syrjäsalo <[email protected]>
Date:     Wed Jul 10 07:05:37 2013
Log:      Fixed indent

http://code.google.com/p/robotframework-sshlibrary/source/detail?r=79fecd166def

Modified:
 /src/SSHLibrary/javaclient.py
 /src/SSHLibrary/pythonclient.py

=======================================
--- /src/SSHLibrary/javaclient.py       Wed Jul 10 06:27:03 2013
+++ /src/SSHLibrary/javaclient.py       Wed Jul 10 07:05:37 2013
@@ -127,8 +127,8 @@
         self._client.closeFile(remotefile)

     def _listfiles(self, path):
-        return [finfo.filename for finfo in self._client.ls(path) if
-                finfo.attributes.getOctalPermissions().startswith('0100')]
+        return [finfo.filename for finfo in self._client.ls(path)
+ if finfo.attributes.getOctalPermissions().startswith('0100')]

     def _get_file(self, source, dest):
         localfile = FileOutputStream(dest)
=======================================
--- /src/SSHLibrary/pythonclient.py     Wed Jul 10 06:28:07 2013
+++ /src/SSHLibrary/pythonclient.py     Wed Jul 10 07:05:37 2013
@@ -143,7 +143,7 @@
         return [getattr(fileinfo, 'filename', '?') for fileinfo
                 in self._client.listdir_attr(path)
                 if stat.S_ISREG(fileinfo.st_mode) or
-                        stat.S_IFMT(fileinfo.st_mode) == 0]
+                   stat.S_IFMT(fileinfo.st_mode) == 0]


 class RemoteCommand(AbstractCommand):

==============================================================================
Revision: c3d8058f8582
Author:   Anssi Syrjäsalo <[email protected]>
Date:     Thu Jul 11 06:04:26 2013
Log:      Fixed indent

http://code.google.com/p/robotframework-sshlibrary/source/detail?r=c3d8058f8582

Modified:
 /src/SSHLibrary/javaclient.py

=======================================
--- /src/SSHLibrary/javaclient.py       Wed Jul 10 07:05:37 2013
+++ /src/SSHLibrary/javaclient.py       Thu Jul 11 06:04:26 2013
@@ -163,7 +163,8 @@
         return stdout, stderr, rc

     def _read_from_stream(self, stream):
- reader = BufferedReader(InputStreamReader(StreamGobbler(stream), self._encoding))
+        reader = BufferedReader(InputStreamReader(StreamGobbler(stream),
+                                                  self._encoding))
         result = ''
         line = reader.readLine()
         while line is not None:

==============================================================================
Revision: 07dbd127daab
Author:   Anssi Syrjäsalo <[email protected]>
Date:     Thu Jul 11 06:04:37 2013
Log:      Combined tests

http://code.google.com/p/robotframework-sshlibrary/source/detail?r=07dbd127daab

Modified:
 /atest/get_file.txt

=======================================
--- /atest/get_file.txt Wed Jul 10 06:47:18 2013
+++ /atest/get_file.txt Thu Jul 11 06:04:37 2013
@@ -18,15 +18,12 @@
Get File And Verify Listing ${TEST SCRIPT NAME} ${TMPDIR}${/} ${TEST SCRIPT NAME}

 Get File With Different Name
- Get File And Verify Listing ${USER HOME}/${TEST SCRIPT NAME} ${TMPDIR}${/}foo.txt foo.txt
-
-Get File With Non-ASCII Name
- Get File And Verify Listing ${USER HOME}/${FILE WITH NON-ASCII NAME} ${TMPDIR}${/} ${FILE WITH NON-ASCII NAME} + Get File And Verify Listing ${USER HOME}/${FILE WITH NON-ASCII NAME} ${TMPDIR}${/}foo.txt foo.txt

 Get File With Pattern
Get File And Verify Listing ${USER HOME}/* ${TMPDIR}${/} ${TEST SCRIPT NAME} ${INTERACTIVE TEST SCRIPT NAME} ${REPEAT TEST SCRIPT NAME}

-Getting Mulitple Source Files To Single File Fails
+Getting Multiple Source Files To Single File Fails
Run Keyword And Expect Error Cannot copy multiple source files to one destination file. SSHLibrary.Get File ${USER HOME}/*.sh ${TMPDIR}${/}foo

 Get File To Curdir

--

--- You received this message because you are subscribed to the Google Groups "robotframework-commit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to