Exemple #1
0
    def returns_date_min_when_no_content_is_available(self):
        LegFile.objects.all().delete()
        updater = ContentFeedRecordUpdater()

        updater.update(self.record, self.library)

        assert_equal(self.record.last_updated, datetime.datetime.min)
Exemple #2
0
    def calls_get_last_updated_time_once(self):

        updater = ContentFeedRecordUpdater()

        updater.update_all(self.feed_records, self.library)

        assert_equal(self.feeds[0].get_last_updated_time.call_count, 1)
Exemple #3
0
    def calls_get_last_updated_time_once(self):

        updater = ContentFeedRecordUpdater()

        updater.update_all(self.feed_records, self.library)

        assert_equal(self.feeds[0].get_last_updated_time.call_count, 1)
Exemple #4
0
    def returns_date_min_when_no_content_is_available(self):
        LegFile.objects.all().delete()
        updater = ContentFeedRecordUpdater()

        updater.update(self.record, self.library)

        assert_equal(self.record.last_updated, datetime.datetime.min)
    def handle(self, *args, **options):
        # Make sure that the library knows about all the types of feeds.
        import_all_feeds()

        records = self.get_records()
        updater = ContentFeedRecordUpdater()
        updater.update_all(records)
Exemple #6
0
    def changes_the_lastUpdated_of_a_legfiles_feed_to_most_recent_intro_date(
            self):
        updater = ContentFeedRecordUpdater()

        updater.update(self.record, self.library)

        assert_equal(self.record.last_updated,
                     datetime.datetime(2011, 8, 17, 0, 0))
Exemple #7
0
    def changes_the_lastUpdated_of_a_legfiles_feed_to_most_recent_intro_date(self):
        updater = ContentFeedRecordUpdater()

        updater.update(self.record, self.library)

        assert_equal(self.record.last_updated, datetime.datetime(2011, 8, 17, 0, 0))