Add opal representation properties for scripting feed, account and

folder.
This commit is contained in:
Olof Hellman
2018-01-19 22:49:01 -08:00
parent fe5a11a2cc
commit 2973bf8edb
7 changed files with 45 additions and 1 deletions

View File

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