[FIX] base_import: dummy test file

bzr revid: xmo@openerp.com-20121024105612-84fb2gav0jpp2hkc
This commit is contained in:
Xavier Morel 2012-10-24 12:56:12 +02:00
parent 403d2ec6d1
commit b2e32b21fa
2 changed files with 8 additions and 1 deletions

View File

@ -24,7 +24,7 @@ Re-implement openerp's file import system:
'category': 'Uncategorized',
'website': 'http://www.openerp.com',
'author': 'OpenERP SA',
'depends': ['base'],
'depends': ['web'],
'installable': True,
'auto_install': True,
'css': [
@ -37,4 +37,5 @@ Re-implement openerp's file import system:
'static/src/js/import.js',
],
'qweb': ['static/src/xml/import.xml'],
'test': ['static/test/states.js'],
}

View File

@ -0,0 +1,6 @@
$(document).ready(function () {
module('foo');
test('dummy', function () {
ok(42);
});
});