Converted these images to PNG, saving a handful of bytes per image
[adiumx.git] / ASUnitTests / GetChatsAccount.applescript
blob9ea4700e452da91effc3e912f1e72db67006fded
1 global HandyAdiumScripts
3 on run
4 tell application "Adium"
5 set newChat to HandyAdiumScripts's makeNewChat()
6 if (get account of newChat) is not account (HandyAdiumScripts's defaultAccount) then
7 -- this tests both account's objectSpecifier and chat's account
8 -- method
9 close newChat --restore
10 error
11 end
12 close newChat --restore
13 end tell
14 end run