""" in response.body, 'wrong info about number of changes'
- assert """
commit 154: 5e204e7583b9@2010-08-10 01:18:46
""" in response.body , 'no info on this commit'
+ assert """""" in response.body, 'no checkbox for this commit'
+ assert """commit 154: 5e204e7583b9@2010-08-10 01:18:46""" in response.body , 'no info on this commit'
assert """Small update at simplevcs app""" in response.body, 'missing info about commit message'
- assert """0""" in response.body, 'wrong info about removed nodes'
- assert """2""" in response.body, 'wrong info about changed nodes'
- assert """1""" in response.body, 'wrong info about added nodes'
+
+ assert """0""" in response.body, 'wrong info about removed nodes'
+ assert """2""" in response.body, 'wrong info about changed nodes'
+ assert """1""" in response.body, 'wrong info about added nodes'
#pagination
@@ -22,11 +24,14 @@ class TestChangelogController(TestContro
response = self.app.get(url(controller='changelog', action='index', repo_name=HG_REPO), {'page':5})
response = self.app.get(url(controller='changelog', action='index', repo_name=HG_REPO), {'page':6})
+
# Test response after pagination...
- assert """
commit 64: 46ad32a4f974@2010-04-20 00:33:21
"""in response.body, 'wrong info about commit 64'
- assert """1"""in response.body, 'wrong info about number of removed'
- assert """13"""in response.body, 'wrong info about number of changes'
- assert """20"""in response.body, 'wrong info about number of added'
+ print response.body
+ assert """""" in response.body, 'no checkbox for this commit'
+ assert """commit 64: 46ad32a4f974@2010-04-20 00:33:21"""in response.body, 'wrong info about commit 64'
+ assert """1"""in response.body, 'wrong info about number of removed'
+ assert """13"""in response.body, 'wrong info about number of changes'
+ assert """20"""in response.body, 'wrong info about number of added'
assert """
""" in response.body, 'following repo list'
+ assert """ %s
""" % datetime.date.today() in response.body, 'no info about action journal day'
def test_stop_following_repository(self):
session = self.log_user()
diff --git a/rhodecode/tests/functional/test_login.py b/rhodecode/tests/functional/test_login.py
--- a/rhodecode/tests/functional/test_login.py
+++ b/rhodecode/tests/functional/test_login.py
@@ -127,7 +127,10 @@ class TestLoginController(TestController
print response.body
assert response.status == '200 OK', 'Wrong response from register page got %s' % response.status
assert 'An email address must contain a single @' in response.body
- assert 'Username may only contain alphanumeric characters underscores or dashes and must begin with alphanumeric character' in response.body
+ assert ('Username may only contain '
+ 'alphanumeric characters underscores, '
+ 'periods or dashes and must begin with '
+ 'alphanumeric character') in response.body
def test_register_err_case_sensitive(self):
response = self.app.post(url(controller='login', action='register'),