Skip to content

Commit

Permalink
grangier#188 - move authors tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Xavier Grangier committed Dec 31, 2014
1 parent ea693a9 commit 41e951c
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 8 deletions.
32 changes: 32 additions & 0 deletions tests/extractors/authors.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# -*- coding: utf-8 -*-
"""\
This is a python port of "Goose" orignialy licensed to Gravity.com
under one or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership.
Python port was written by Xavier Grangier for Recrutae
Gravity.com licenses this file
to you under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""

from base import TestExtractionBase


class TestArticleAuthor(TestExtractionBase):

def test_author_schema(self):
article = self.getArticle()
fields = ['authors']
self.runArticleAssertions(article=article, fields=fields)
8 changes: 0 additions & 8 deletions tests/extractors/content.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,11 +298,3 @@ class TestExtractionsRaw(TestExtractions):
def extract(self, instance):
article = instance.extract(raw_html=self.getRawHtml())
return article


class TestArticleAuthor(TestExtractionBase):

def test_author_schema(self):
article = self.getArticle()
fields = ['authors']
self.runArticleAssertions(article=article, fields=fields)

0 comments on commit 41e951c

Please sign in to comment.