-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
User storyjen hyväksymisehdot kirjattu Robot Framework tiedostoihin. …
…Yleistä refaktorointia ja siistimistä
- Loading branch information
Showing
17 changed files
with
407 additions
and
60 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,4 @@ def read(self, prompt): | |
return input(prompt) | ||
|
||
def get_log(self): | ||
return self.written | ||
return self.written |
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
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
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,54 @@ | ||
*** Settings *** | ||
Resource resource.robot | ||
|
||
*** Test Cases *** | ||
User Can Not Create BibTeX File From Empty Storage | ||
User Input 3 | ||
|
||
Run Application With Inputs | ||
Output Should Contain Ei viitteitä \n | ||
|
||
User Can Give Command To Create BibTeX File From References In Storage | ||
User Input 1 | ||
User Input @{KEY} | ||
User Input @{AUTHOR_FIRST_NAME} | ||
User Input @{AUTHOR_LAST_NAME} | ||
User Input @{BOOK} | ||
User Input @{YEAR} | ||
User Input @{PUBLISHER} | ||
User Input \ | ||
User Input 3 | ||
User Input \ | ||
|
||
Run Application With Inputs | ||
Output Should Contain references.bib tiedosto luotu sijaintiin ${EXECDIR}\n | ||
|
||
Program Can Create BibTeX File | ||
User Input 1 | ||
User Input @{KEY_2} | ||
User Input @{AUTHOR_FIRST_NAME_2} | ||
User Input @{AUTHOR_LAST_NAME_2} | ||
User Input @{BOOK_2} | ||
User Input @{YEAR_2} | ||
User Input @{PUBLISHER_2} | ||
User Input \ | ||
User Input 3 | ||
User Input \ | ||
|
||
Run Application With Inputs | ||
Output Should Contain references.bib tiedosto luotu sijaintiin ${EXECDIR}\n | ||
|
||
Program Outputs Absolute Path Where BibTeX File Was Created Into Terminal | ||
User Input 1 | ||
User Input @{KEY_3} | ||
User Input @{AUTHOR_FIRST_NAME_3} | ||
User Input @{AUTHOR_LAST_NAME_3} | ||
User Input @{BOOK_3} | ||
User Input @{YEAR_3} | ||
User Input @{PUBLISHER_3} | ||
User Input \ | ||
User Input 3 | ||
User Input \ | ||
|
||
Run Application With Inputs | ||
Output Should Contain references.bib tiedosto luotu sijaintiin ${EXECDIR}\n |
Oops, something went wrong.