Download:
child 121:57680c37b6b8
parent 119:9d4c62d528a0
120:d3d03451dfc0
Anton Shestakov <av6@dwimlabs.net>, Wed, 10 Aug 2016 22:27:30 +0800
fruitbar: it's a todo app, one word

2 файлов изменено, 2 вставок(+), 2 удалений(-) [+]
templates/index.html file | annotate | diff | comparison | revisions
test.py file | annotate | diff | comparison | revisions
--- a/templates/index.html Wed Aug 10 22:25:43 2016 +0800
+++ b/templates/index.html Wed Aug 10 22:27:30 2016 +0800
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
- <title>Fruit Bar Progress Tracker</title>
+ <title>Fruitbar Todo</title>
<link type="image/x-icon" href="{{ url_for('static', filename='favicon.ico') }}" rel="shortcut icon">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
--- a/test.py Wed Aug 10 22:25:43 2016 +0800
+++ b/test.py Wed Aug 10 22:27:30 2016 +0800
@@ -16,7 +16,7 @@
class IndexTestCase(BaseTestCase):
def test_index(self):
response = self.c.get('/')
- self.assertIn('Fruit Bar', response.data)
+ self.assertIn('Fruitbar Todo', response.data)
bundle_re = 'bundles/fruitbar\.[0-9a-f]+\.js'
self.assertRegexpMatches(response.data, bundle_re)