basic readonly scripting support for account, feed, folder

This commit is contained in:
Olof Hellman
2018-01-11 00:51:25 -08:00
parent 9236487945
commit 775dbf0852
13 changed files with 469 additions and 4 deletions

View File

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