~entertainer-releases/entertainer/trunk

« back to all changes in this revision

Viewing changes to entertainerlib/tests/test_configuration.py

  • Committer: Matt Layman
  • Date: 2010-04-03 15:10:28 UTC
  • mfrom: (403.1.12 bye-feedz)
  • Revision ID: laymansterms.dev@gmail.com-20100403151028-fxbe7g64z129ohu6
All feed code is now removed. Lots of pylint cleanup too. (Matt Layman)

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
        self.assertEqual(self.configuration.theme_path,
25
25
            os.path.join(self.test_cfg_dir, 'data', 'themes', 'Default'))
26
26
        self.assertFalse(self.configuration.tray_icon_enabled)
27
 
        self.assertEqual(self.configuration.feed_fetch_interval, 15)
28
27
        self.assertEqual(self.configuration.port, 45054)
29
28
        self.assertEqual(self.configuration.media_folders, [''])
30
 
        self.assertEqual(self.configuration.feeds, [
31
 
            'http://theironlion.net/blog/feed',
32
 
            'http://www.joshuascotton.com/main/archives/tag/entertainer/feed',
33
 
            'http://laymanstermsdev.wordpress.com/feed'
34
 
        ])
35
29
        self.assertEqual(self.configuration.weather_location, 'Bath,England')
36
30
        self.assertTrue(self.configuration.display_weather_in_client)
37
31
        self.assertTrue(self.configuration.download_metadata)