2018-01-19 22:31:17 -08:00
|
|
|
-- this script just tests that no error was generated from the script
|
|
|
|
-- and that the returned list is greater than 0
|
|
|
|
try
|
2018-08-28 22:18:24 -07:00
|
|
|
tell application "NetNewsWire"
|
2019-11-15 15:46:43 -06:00
|
|
|
set namesResult to name of every author of every webFeed of every account
|
2018-01-19 22:31:17 -08:00
|
|
|
end tell
|
|
|
|
set test_result to ((count items of namesResult) > 0)
|
|
|
|
on error message
|
|
|
|
return {test_result:false, script_result:message}
|
|
|
|
end try
|
|
|
|
|
|
|
|
return {test_result:test_result}
|