You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 25, 2019. It is now read-only.
Running the test suite on that latest master, I get the following failure:
======================================================================
FAIL: Check that apostrophes in words don't end up as ugly seperators
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/garyvdm/wok.git/wok/tests/test_util.py", line 44, in test_apostrophes
self.assertEqual(slug, util.slugify(orig))
AssertionError: u'dont-use-bobs-stuff' != u'don-t-use-bob-s-stuff'
- dont-use-bobs-stuff
+ don-t-use-bob-s-stuff
? + +
The text was updated successfully, but these errors were encountered:
(This isn't documented but should be). The tests are designed to be run with Twisted's trial, which makes use of a 'expected failure' modification for tests. That test is marked as expected to fail, since I never make sluggify do that, and at this point feel like it would break backwards compatibility.
Going forward one of a few things should happen
Remove dependency on trial and implement expected failures differently.
Fix the test, backwards compatibility be damned (This will probably happen in v1.0).
Document the dependency on trial.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Running the test suite on that latest master, I get the following failure:
The text was updated successfully, but these errors were encountered: