Refactor Containers into a plugin (#348)

* Removing Containers code
* Closes #301
This commit is contained in:
Kevin Chung
2017-08-20 19:40:46 -04:00
committed by GitHub
parent 92b7ca06ca
commit 2e41886591
16 changed files with 41 additions and 417 deletions

View File

@@ -44,16 +44,6 @@ def test_admin_scoreboard():
destroy_ctfd(app)
def test_admin_containers():
"""Does admin containers return a 200 by default"""
app = create_ctfd()
with app.app_context():
client = login_as_user(app, name="admin", password="password")
r = client.get('/admin/containers')
assert r.status_code == 200
destroy_ctfd(app)
def test_admin_chals():
"""Does admin chals return a 200 by default"""
app = create_ctfd()