Skip to content
This repository has been archived by the owner on Aug 11, 2020. It is now read-only.

Added tests for ios platform #26

Merged
merged 1 commit into from
May 6, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ describe('generate resource', function () {
scriptid: 'resource.test',
scriptname: 'My resource name',
kodiVersion: '2.25.0',
platforms: 'all',
platforms: 'ios',
license: 'MIT',
authors: 'Me',
summary: 'My summary',
Expand Down Expand Up @@ -244,7 +244,7 @@ describe('generate resource', function () {
assert.fileContent('addon.xml', '<addon id="resource.test" ');
assert.fileContent('addon.xml', '<extension point="kodi.resource.images" compile="false" type="skinbackgrounds"/>');
assert.fileContent('addon.xml', ' provider-name="Me">');
assert.fileContent('addon.xml', '<platform>all</platform>');
assert.fileContent('addon.xml', '<platform>ios</platform>');
assert.fileContent('addon.xml', '<import addon="xbmc.python" version="2.25.0"/>');
});
});
Expand Down