~ubuntu-branches/ubuntu/natty/moin/natty-updates

« back to all changes in this revision

Viewing changes to MoinMoin/config/_tests/test_multiconfig.py

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2008-06-22 21:17:13 UTC
  • mto: This revision was merged to the branch mainline in revision 18.
  • Revision ID: james.westby@ubuntu.com-20080622211713-inlv5k4eifxckelr
ImportĀ upstreamĀ versionĀ 1.7.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
            py.test.skip("password_checker is disabled in the configuration, not testing it")
33
33
        else:
34
34
            for pw, result in self.tests_builtin:
35
 
                pw_error = pw_checker(self.request, self.username, pw)
 
35
                pw_error = pw_checker(self.username, pw)
36
36
                print "%r: %s" % (pw, pw_error)
37
37
                assert result == (pw_error is None)
38
38