test favicon
This commit is contained in:
parent
bb7168e3ca
commit
f3d2cb1e47
4 changed files with 10 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
|||
import queue, time, uuid, json, logging, datetime, os
|
||||
from flask import Flask, render_template, request, make_response, session, url_for, g
|
||||
from flask import Flask, render_template, request, make_response, session, send_file, g
|
||||
from flask_socketio import SocketIO, join_room, leave_room
|
||||
from flask_session import Session
|
||||
from markupsafe import escape
|
||||
|
@ -49,11 +49,11 @@ def create_app(test_config=None):
|
|||
#website
|
||||
@app.route('/favicon.ico')
|
||||
def favicon():
|
||||
return url_for('static', filename='Logo_CCC.svg.png')
|
||||
return send_file("../static/Logo_CCC.svg.png")
|
||||
|
||||
@app.route('/socket.io.js')
|
||||
def socketiojs():
|
||||
return url_for('static', filename='socket.io.js')
|
||||
#@app.route('/socket.io.js')
|
||||
#def socketiojs():
|
||||
# return url_for('static', filename='socket.io.js')
|
||||
|
||||
@app.route("/")
|
||||
def index():
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -12,6 +12,11 @@ def test_config():
|
|||
assert not create_app()["app"].testing
|
||||
assert create_app({'TESTING': True})["app"].testing
|
||||
|
||||
#basic tests
|
||||
def test_favicon(client):
|
||||
response = client.get("/favicon.ico")
|
||||
assert response.status_code == 200
|
||||
|
||||
#/adduser
|
||||
def test_adduser(client):
|
||||
response = client.get('/adduser/user')
|
||||
|
|
Loading…
Reference in a new issue