Skip to content
This repository has been archived by the owner on Feb 8, 2018. It is now read-only.

Commit

Permalink
Failing test for #3975 regression
Browse files Browse the repository at this point in the history
  • Loading branch information
chadwhitacre committed Nov 24, 2016
1 parent 3d89771 commit 4a566e2
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions tests/py/test_db_checks.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
from __future__ import absolute_import, division, print_function, unicode_literals

from gratipay import models
from gratipay.testing import Harness


class Tests(Harness):

# cb - _check_balances - calls assert so we don't need asserts here

def test_cb_is_fine_with_empty_database(self):
with self.db.get_cursor() as cursor:
models._check_balances(cursor)

def test_cb_is_fine_with_status_unknown(self):
alice = self.make_participant('alice', balance=49)
self.make_exchange('braintree-cc', 49, 0, alice, status='unknown')
with self.db.get_cursor() as cursor:
models._check_balances(cursor)

0 comments on commit 4a566e2

Please sign in to comment.