-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
issue #22 - start working on budgets implementation
- Loading branch information
Showing
4 changed files
with
168 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 changes: 64 additions & 0 deletions
64
biweeklybudget/tests/acceptance/flaskapp/views/test_budgets.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
""" | ||
The latest version of this package is available at: | ||
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <jason@jasonantman.com> <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
biweeklybudget is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU Affero General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
biweeklybudget is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU Affero General Public License for more details. | ||
You should have received a copy of the GNU Affero General Public License | ||
along with biweeklybudget. If not, see <http://www.gnu.org/licenses/>. | ||
The Copyright and Authors attributions contained herein may not be removed or | ||
otherwise altered, except to add the Author attribution of a contributor to | ||
this work. (Additional Terms pursuant to Section 7b of the AGPL v3) | ||
################################################################################ | ||
While not legally required, I sincerely request that anyone who finds | ||
bugs please submit them at <https://github.com/jantman/biweeklybudget> or | ||
to me via email, and that you send any contributions or improvements | ||
either as a pull request on GitHub, or to me via email. | ||
################################################################################ | ||
AUTHORS: | ||
Jason Antman <jason@jasonantman.com> <http://www.jasonantman.com> | ||
################################################################################ | ||
""" | ||
|
||
import pytest | ||
|
||
from biweeklybudget.tests.acceptance_helpers import AcceptanceHelper | ||
|
||
|
||
@pytest.mark.acceptance | ||
class TestBudgets(AcceptanceHelper): | ||
|
||
@pytest.fixture(autouse=True) | ||
def get_page(self, base_url, selenium, testflask, testdb): # noqa | ||
self.baseurl = base_url | ||
selenium.get(base_url + '/budgets') | ||
|
||
def test_heading(self, selenium): | ||
heading = selenium.find_element_by_class_name('navbar-brand') | ||
assert heading.text == 'OFX Transactions - BiweeklyBudget' | ||
|
||
def test_nav_menu(self, selenium): | ||
ul = selenium.find_element_by_id('side-menu') | ||
assert ul is not None | ||
assert 'nav' in ul.get_attribute('class') | ||
assert ul.tag_name == 'ul' | ||
|
||
def test_notifications(self, selenium): | ||
div = selenium.find_element_by_id('notifications-row') | ||
assert div is not None | ||
assert div.get_attribute('class') == 'row' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters