mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Continue rename to NetNewsWire.
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
|
||||
try
|
||||
tell application "NetNewsWire"
|
||||
tell account id "OnMyMac"
|
||||
repeat 3 times
|
||||
set newFeed to make new feed with data "https://boingboing.net/feed"
|
||||
delete newFeed
|
||||
end repeat
|
||||
|
||||
set newFolder to make new folder with properties {name:"XCTest folder"}
|
||||
repeat 3 times
|
||||
set newFeed to make new feed in newFolder with data "https://boingboing.net/feed"
|
||||
delete newFeed
|
||||
end repeat
|
||||
delete newFolder
|
||||
|
||||
end tell
|
||||
end tell
|
||||
|
||||
|
||||
set test_result to true
|
||||
set script_result to "Success"
|
||||
on error message
|
||||
return {test_result:false, script_result:message}
|
||||
end try
|
||||
|
||||
return {test_result:test_result, script_result:script_result}
|
||||
Reference in New Issue
Block a user