2018-04-26 06:40:50 +02:00
|
|
|
-- this script just tests that no error was generated from the script
|
|
|
|
try
|
2018-08-29 07:18:24 +02:00
|
|
|
tell application "NetNewsWire"
|
2019-11-15 22:46:43 +01:00
|
|
|
exists webFeed 1 of account 1
|
2018-04-26 06:40:50 +02:00
|
|
|
end tell
|
|
|
|
on error message
|
|
|
|
return {test_result:false, script_result:message}
|
|
|
|
end try
|
|
|
|
|
|
|
|
return {test_result:true}
|