Created
September 13, 2016 07:15
-
-
Save LPA2-Automne2016/7393287f5d7b2e2872534d160f02c6a9 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
besoin : "recuperer la liste des devises étrangeres" | |
getListForeignDevise() { | |
getListDevise(['EUR']) | |
} | |
assert getListForeignDevise() == ['YEN', 'USD'] | |
En tant q'utilisateur | |
lorsque je clique sur la page | |
alors j'ai la liste des devises excepté le USD | |
assert getListDevise(['USD']) == ['EUR', 'YEN'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment