Skip to content
Snippets Groups Projects
Commit 44bfda13 authored by cclauss's avatar cclauss
Browse files

Added django 1.6, simple-runtime-P2, P3, and Pypy2

parent 330524ad
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,12 @@ testDetectWithEmptyReqs() {
assertCapturedSuccess
}
testDetectDjango16() {
detect "django-1.6-skeleton"
assertCapturedEquals "Python"
assertCapturedSuccess
}
testDetectDjango15() {
detect "django-1.5-skeleton"
assertCapturedEquals "Python"
......@@ -62,6 +68,23 @@ testDetectNotPython() {
assertEquals "1" "${RETURN}"
}
testDetectSimpleRuntimePypy2() {
detect "simple-runtime-pypy2"
assertCapturedEquals "Python"
assertCapturedSuccess
}
testDetectSimpleRuntimePython2() {
detect "simple-runtime-python2"
assertCapturedEquals "Python"
assertCapturedSuccess
}
testDetectSimpleRuntimePython3() {
detect "simple-runtime" # should probably be renamed simple-runtime-python3
assertCapturedEquals "Python"
assertCapturedSuccess
}
## utils ########################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment