Skip to content

Commit

Permalink
Add test for GMEU entry 'a'
Browse files Browse the repository at this point in the history
  • Loading branch information
suchow committed Apr 5, 2016
1 parent 70ac801 commit 3802df1
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions tests/test_gmeu/test_a.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
"""Test GMEU entry 'a'."""

from proselint.tools import assert_error
from nose import SkipTest


def test_a():
"""Use the correct determiner."""
raise SkipTest

sentences = [
"Ezra gave an eulogy more unique.",
"What capital of an European country is the farthest north?",
"His sole reward was an one-year term as Ambassador to Thailand."
]

error_check_name = "uncomparables.misc"

for sentence in sentences:
yield assert_error, sentence, error_check_name

0 comments on commit 3802df1

Please sign in to comment.