/usr/share/pyshared/gpodder/test/model.py is in gpodder 3.9.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | # -*- coding: utf-8 -*-
#
# gPodder - A media aggregator and podcast client
# Copyright (c) 2005-2016 Thomas Perl and the gPodder Team
#
# gPodder is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# gPodder is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# gpodder.test.model - Unit tests for gpodder.model
# Thomas Perl <thp@gpodder.org>; 2013-02-12
import unittest
import gpodder
from gpodder import model
class TestEpisodePublishedProperties(unittest.TestCase):
PUBLISHED_UNIXTIME = 1360666744
PUBLISHED_SORT = '2013-02-12'
PUBLISHED_YEAR = '13'
PUBLISHED_MONTH = '02'
PUBLISHED_DAY = '12'
def setUp(self):
self.podcast = model.PodcastChannel(None)
self.episode = model.PodcastEpisode(self.podcast)
self.episode.published = self.PUBLISHED_UNIXTIME
def test_sortdate(self):
self.assertEqual(self.episode.sortdate, self.PUBLISHED_SORT)
def test_pubdate_year(self):
self.assertEqual(self.episode.pubdate_year, self.PUBLISHED_YEAR)
def test_pubdate_month(self):
self.assertEqual(self.episode.pubdate_month, self.PUBLISHED_MONTH)
def test_pubdate_day(self):
self.assertEqual(self.episode.pubdate_day, self.PUBLISHED_DAY)
|