add testFeedExists script; remove redundant uniqueId functions; add CFBundleURLTypes info.plist key

This commit is contained in:
Olof Hellman
2018-04-25 21:40:50 -07:00
parent 5cbc85a36b
commit e43a019cca
9 changed files with 38 additions and 22 deletions

View File

@@ -0,0 +1,10 @@
-- this script just tests that no error was generated from the script
try
tell application "Evergreen"
exists feed 1 of account 1
end tell
on error message
return {test_result:false, script_result:message}
end try
return {test_result:true}