Converted these images to PNG, saving a handful of bytes per image
[adiumx.git] / ASUnitTests / MakeAccount.applescript
blob2efa8235fdaeae0a526b95dc6e73949a171d97b1
1 global HandyAdiumScripts
3 on run
4 tell application "Adium"
5 set c to count accounts
6 tell service "AIM"
7 set newAccount to make new account with properties {name:"test"}
8 end tell
9 if (count accounts) is not c + 1 then
10 --for some reason, I failed to make an account.
11 --no cleanup is necessary
12 error
13 end
14 delete newAccount
15 end tell
16 end run