diff --git a/ox/itunes.py b/ox/itunes.py
index 534663d..7e94403 100644
--- a/ox/itunes.py
+++ b/ox/itunes.py
@@ -87,5 +87,6 @@ class ItunesAlbum:
data['type'] = findString(xml, 'listType', '<')
return data
-test = ItunesAlbum('Rio', 'Duran Duran')
-print test.getData()
\ No newline at end of file
+if __name__ == '__main__':
+ test = ItunesAlbum('So Red the Rose', 'Arcadia')
+ print test.getData()
\ No newline at end of file