Fakultas Ilmu Komputer UI
Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
PMPL
Collection of Practice
2019
1606823475-practice
Commits
78f4680c
Commit
78f4680c
authored
Nov 05, 2019
by
Muhammad Ilham Peruzzi
Browse files
use mutpy to perform mutation testing and add test case to improve mutation testing score
parent
a52a2250
Changes
3
Hide whitespace changes
Inline
Side-by-side
lists/tests/test_app.py
0 → 100644
View file @
78f4680c
from
django.apps
import
apps
from
django.test
import
TestCase
from
lists.apps
import
ListsConfig
class
ListsConfigTest
(
TestCase
):
def
test_apps
(
self
):
self
.
assertEqual
(
ListsConfig
.
name
,
'lists'
)
self
.
assertEqual
(
apps
.
get_app_config
(
'lists'
).
name
,
'lists'
)
requirements.txt
View file @
78f4680c
appdirs
==1.4.0
astmonkey
==0.3.6
astroid
==2.2.0
autopep8
==1.4.4
beautifulsoup4
==4.6.3
certifi
==2018.11.29
cffi
==1.12.3
chardet
==3.0.4
click
==6.7
colorama
==0.4.1
coloredlogs
==10.0
coreapi
==2.3.3
coreschema
==0.0.4
coverage
==4.5.2
deap
==1.2.2
dj-database-url
==0.5.0
Django
==2.2.5
django-appconf
==1.0.3
django-compressor
==2.3
django-environ
==0.4.4
django-filter
==2.1.0
django-mutpy
==0.1.2
django-nose
==1.4.6
django-rest-swagger
==2.2.0
django-sass-processor
==0.7.3
django-silk
==3.0.4
django-webpack-loader
==0.4.1
djangorestframework
==3.5.4
djangorestframework-simplejwt
==4.3.0
docutils
==0.15.2
EditorConfig
==0.12.2
et-xmlfile
==1.0.1
Flask
==1.1.1
Flask-Cors
==3.0.8
gevent
==1.4.0
gprof2dot
==2017.9.19
greenlet
==0.4.15
gunicorn
==19.9.0
humanfriendly
==4.18
idna
==2.8
isort
==4.3.9
itsdangerous
==1.1.0
itypes
==1.1.0
jdcal
==1.4
Jinja2
==2.10.1
jsbeautifier
==1.8.7
laspy
==1.5.1
lazy-object-proxy
==1.3.1
libsass
==0.19.3
lockfile
==0.12.2
MarkupSafe
==1.0
mccabe
==0.6.1
MutPy
==0.6.0
nose
==1.3.7
numpy
==1.16.2
openapi-codec
==1.3.2
openpyxl
==2.6.0
packaging
==16.8
psutil
==5.4.7
psycopg2
==2.6.2
psycopg2-binary
==2.8.3
py-cpuinfo
==4.0.0
pycodestyle
==2.5.0
pycparser
==2.19
pydot
==1.4.1
pydotplus
==2.0.2
Pygments
==2.4.2
PyJWT
==1.7.1
pylint
==2.3.0
pylint-django
==2.0.6
pylint-plugin-utils
==0.5
pyparsing
==2.1.10
pyreadline
==2.1
PySastrawi
==1.2.0
python-daemon
==2.2.3
python-dateutil
==2.8.0
python-interface
==1.5.1
pytz
==2019.2
PyYAML
==5.1.2
rcssmin
==1.0.6
requests
==2.21.0
requests-mock
==1.7.0
requests-unixsocket
==0.1.5
rjsmin
==1.1.0
selenium
==3.141.0
simplejson
==3.16.0
six
==1.12.0
sortedcontainers
==2.1.0
sqlparse
==0.3.0
whitenoise
==4.1.3
\ No newline at end of file
termcolor
==1.1.0
typed-ast
==1.2.0
uritemplate
==3.0.0
urllib3
==1.25.3
Werkzeug
==0.15.5
whitenoise
==4.1.3
wrapt
==1.11.1
yapf
==0.26.0
yattag
==1.10.0
superlists/settings.py
View file @
78f4680c
...
...
@@ -42,7 +42,8 @@ INSTALLED_APPS = [
'django.contrib.messages'
,
'django.contrib.staticfiles'
,
'lists'
,
'sass_processor'
'sass_processor'
,
'django_mutpy'
]
MIDDLEWARE
=
[
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment