~ubuntu-branches/ubuntu/quantal/banshee/quantal

« back to all changes in this revision

Viewing changes to src/Core/Banshee.Services/Banshee.Playlists.Formats/Tests/PlaylistFormatTests.cs

  • Committer: Package Import Robot
  • Author(s): Chow Loong Jin
  • Date: 2011-12-12 01:40:00 UTC
  • mfrom: (6.3.20 experimental)
  • Revision ID: package-import@ubuntu.com-20111212014000-0q4jsvif0oecyth8
Tags: 2.3.2-1ubuntu1
* Merge from Debian Experimental, remaining changes:
  + Enable and recommend SoundMenu and Disable NotificationArea by default
  + Disable boo and karma extensions
  + Enable and suggest u1ms
  + Move desktop file for Meego UI to /usr/share/une/applications
  + Change the url for the Amazon store redirector
  + [08dea2c] Revert "Fix invalid cast causing ftbfs with libgpod"

Show diffs side-by-side

added added

removed removed

Lines of Context:
94
94
        }
95
95
 
96
96
        [Test]
 
97
        public void ReadAsxEntryRef ()
 
98
        {
 
99
            PlaylistParser parser = new PlaylistParser ();
 
100
            parser.BaseUri = BaseUri;
 
101
 
 
102
            parser.Parse (new SafeUri ("http://download.banshee.fm/test/remote.asx"));
 
103
            IPlaylistFormat plref = LoadPlaylist (new AsxPlaylistFormat (), "entryref.asx");
 
104
            Assert.AreEqual (parser.Elements, plref.Elements);
 
105
        }
 
106
 
 
107
        [Test]
97
108
        public void ReadM3uSimple ()
98
109
        {
99
110
            LoadTest (new M3uPlaylistFormat (), "simple.m3u", false);