-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
62a1ea4
commit 8d92a04
Showing
8 changed files
with
106 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions
34
tests/integration/desafios/segundoCiclo/Capy/CapyBuscaAGuyra.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import { moduloActividad, actividadTest } from '../../../../helpers/actividadTest'; | ||
|
||
const nombre = "CapyBuscaAGuyra"; | ||
|
||
moduloActividad(nombre, () => { | ||
|
||
actividadTest(nombre, { | ||
solucion: `<xml xmlns="http://www.w3.org/1999/xhtml"> | ||
<variables></variables> | ||
<block type="al_empezar_a_ejecutar" deletable="false" movable="false" editable="false" x="15" y="15"> | ||
<statement name="program"> | ||
<shadow type="required_statement"></shadow> | ||
<block type="VolverAlBordeIzquierdo"> | ||
<next> | ||
<block type="Hasta"> | ||
<value name="condition"> | ||
<shadow type="required_value"></shadow> | ||
<block type="TocandoGuyra"></block> | ||
</value> | ||
<statement name="block"> | ||
<shadow type="required_statement"></shadow> | ||
<block type="MoverACasillaDerecha"></block> | ||
</statement> | ||
<next> | ||
<block type="SubirPajarito"></block> | ||
</next> | ||
</block> | ||
</next> | ||
</block> | ||
</statement> | ||
</block> | ||
</xml>`} | ||
) | ||
}); |
30 changes: 30 additions & 0 deletions
30
tests/integration/desafios/segundoCiclo/Capy/CapyYGuyra.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import { moduloActividad, actividadTest } from '../../../../helpers/actividadTest'; | ||
|
||
const nombre = "CapyYGuyra"; | ||
|
||
moduloActividad(nombre, () => { | ||
|
||
actividadTest(nombre, { | ||
solucion: `<xml xmlns="http://www.w3.org/1999/xhtml"> | ||
<variables></variables> | ||
<block type="al_empezar_a_ejecutar" deletable="false" movable="false" editable="false" x="15" y="15"> | ||
<statement name="program"> | ||
<shadow type="required_statement"></shadow> | ||
<block type="MoverACasillaDerecha"> | ||
<next> | ||
<block type="MoverACasillaDerecha"> | ||
<next> | ||
<block type="MoverACasillaDerecha"> | ||
<next> | ||
<block type="SubirPajarito"></block> | ||
</next> | ||
</block> | ||
</next> | ||
</block> | ||
</next> | ||
</block> | ||
</statement> | ||
</block> | ||
</xml>`} | ||
) | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters