michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: # file, You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: #Template used by test-main.js michael@0: TEST_MAIN_JS = '''\ michael@0: var main = require("./main"); michael@0: michael@0: exports["test main"] = function(assert) { michael@0: assert.pass("Unit test running!"); michael@0: }; michael@0: michael@0: exports["test main async"] = function(assert, done) { michael@0: assert.pass("async Unit test running!"); michael@0: done(); michael@0: }; michael@0: michael@0: require("sdk/test").run(exports); michael@0: ''' michael@0: michael@0: #Template used by package.json michael@0: PACKAGE_JSON = '''\ michael@0: { michael@0: "name": "%(name)s", michael@0: "title": "%(title)s", michael@0: "id": "%(id)s", michael@0: "description": "a basic add-on", michael@0: "author": "", michael@0: "license": "MPL 2.0", michael@0: "version": "0.1" michael@0: } michael@0: '''