30d4ad3f8ed4c4ed431bafd6aef648045f5becd0
[odoo/odoo.git] / addons / document_webdav / test / webdav_test1.yml
1 -
2     In order to test the document_ftp functionality
3 -
4     I open the HTTP port and perform an OPTIONS request to the server
5 -
6     !python {model: ir.attachment}: |
7         from document_webdav import test_davclient as te
8         reload(te) # reload..
9         dc = te.DAVClient()
10         dc.gd_options()
11         dc.get_creds(self, cr, uid)
12         dc.gd_options(path=cr.dbname, expect={'DAV': ['1',]})
13 -