Add test for 2P commands
This commit is contained in:
parent
6eb3676343
commit
a09bfb87d4
@ -66,7 +66,7 @@ If there is an unsupported feature that you would like support for, please make
|
|||||||
| `C`, `D`, `E`, `F`, `G`, `H`, `I` | `⚠️` | `❌` | Replaced by normal notes/rolls in tja2fumen. |
|
| `C`, `D`, `E`, `F`, `G`, `H`, `I` | `⚠️` | `❌` | Replaced by normal notes/rolls in tja2fumen. |
|
||||||
| `9000,`<br>`9008,` | `⚪️` | `⚠️` | Double Kusudama note treated as 1 drumroll by tja2fumen, but 2 overlapping drumrolls by tja2bin. |
|
| `9000,`<br>`9008,` | `⚪️` | `⚠️` | Double Kusudama note treated as 1 drumroll by tja2fumen, but 2 overlapping drumrolls by tja2bin. |
|
||||||
| `#START`, `#END` | `✅` | `✅` | |
|
| `#START`, `#END` | `✅` | `✅` | |
|
||||||
| `#START P1`, `START P2` | `✅` | `❔` | |
|
| `#START P1`, `#START P2` | `✅` | `❌` | |
|
||||||
| `#MEASURE` | `✅` | `✅` | |
|
| `#MEASURE` | `✅` | `✅` | |
|
||||||
| `#BPMCHANGE` | `✅` | `⚠️` | See https://github.com/Fluto/TakoTako/issues/16 |
|
| `#BPMCHANGE` | `✅` | `⚠️` | See https://github.com/Fluto/TakoTako/issues/16 |
|
||||||
| `#DELAY` | `✅` | `❌` | |
|
| `#DELAY` | `✅` | `❌` | |
|
||||||
|
39
testing/data/dummy_tjas/basic_song_2P.tja
Normal file
39
testing/data/dummy_tjas/basic_song_2P.tja
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
// This song contains only basic notes.
|
||||||
|
BPM:120
|
||||||
|
OFFSET:-1.00
|
||||||
|
|
||||||
|
COURSE:Oni
|
||||||
|
LEVEL:10
|
||||||
|
BALLOON:8,8
|
||||||
|
SCOREINIT:400
|
||||||
|
SCOREDIFF:100
|
||||||
|
STYLE:Single
|
||||||
|
|
||||||
|
#START
|
||||||
|
1020304,
|
||||||
|
5000008,
|
||||||
|
6000008,
|
||||||
|
7000008,
|
||||||
|
9000008,
|
||||||
|
#END
|
||||||
|
|
||||||
|
BALLOON:8,8
|
||||||
|
SCOREINIT:400
|
||||||
|
SCOREDIFF:100
|
||||||
|
STYLE:Double
|
||||||
|
|
||||||
|
#START P1
|
||||||
|
1020304,
|
||||||
|
5000008,
|
||||||
|
6000008,
|
||||||
|
7000008,
|
||||||
|
9000008,
|
||||||
|
#END
|
||||||
|
|
||||||
|
#START P2
|
||||||
|
1020304,
|
||||||
|
5000008,
|
||||||
|
6000008,
|
||||||
|
7000008,
|
||||||
|
9000008,
|
||||||
|
#END
|
@ -8,6 +8,7 @@ from conftest import convert
|
|||||||
|
|
||||||
@pytest.mark.parametrize('id_song,err_msg', [
|
@pytest.mark.parametrize('id_song,err_msg', [
|
||||||
['basic_song', None],
|
['basic_song', None],
|
||||||
|
['basic_song_2P', None],
|
||||||
['notes_double_kusudama', None],
|
['notes_double_kusudama', None],
|
||||||
['notes_hands', None],
|
['notes_hands', None],
|
||||||
['notes_sim_only', None],
|
['notes_sim_only', None],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user