Moved mapsystem contrib to right location

This commit is contained in:
Griatch 2021-06-05 17:20:33 +02:00
parent fef5ad5d8c
commit b641d0ce71
3 changed files with 64 additions and 0 deletions

View file

@ -0,0 +1,56 @@
MAP = r"""
1 1 1 1 1 1 1 1 1 1 2
+ 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0
0 #
\
1 #-#-#-#
|\ |
2 #-#+#+#-----#
| |
3 #-#---#-#-#-#-#
| |x|x|
4 o-#-#-# #-#-#
\ |x|x|
5 o-o-#-# #-#-#
/
6 #
\
7 #-#-#-#
| |
8 #-#-#d# #
^
9 #-# #
10
11
12
13
14
15
16
17
18
19
20
"""
LEGEND = {}
MAP_DATA = {
"map": MAP,
"legend": LEGEND,
}

View file

@ -0,0 +1,8 @@
"""
Tests for the Mapsystem
"""
from django.unittest import TestCase, mock
from . import mapsystem