├── .gitignore ├── BUILD.rst ├── CalculatorLibrary.py ├── README.rst ├── calculator.py ├── data_driven.robot ├── docs ├── CalculatorLibrary.html ├── extra.css ├── index.html ├── log.html ├── report.html └── style.css ├── gherkin.robot ├── keyword_driven.robot ├── requirements.txt └── tasks.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotframework/RobotDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotframework/RobotDemo/HEAD/BUILD.rst -------------------------------------------------------------------------------- /CalculatorLibrary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotframework/RobotDemo/HEAD/CalculatorLibrary.py -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotframework/RobotDemo/HEAD/README.rst -------------------------------------------------------------------------------- /calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotframework/RobotDemo/HEAD/calculator.py -------------------------------------------------------------------------------- /data_driven.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotframework/RobotDemo/HEAD/data_driven.robot -------------------------------------------------------------------------------- /docs/CalculatorLibrary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotframework/RobotDemo/HEAD/docs/CalculatorLibrary.html -------------------------------------------------------------------------------- /docs/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotframework/RobotDemo/HEAD/docs/extra.css -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotframework/RobotDemo/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotframework/RobotDemo/HEAD/docs/log.html -------------------------------------------------------------------------------- /docs/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotframework/RobotDemo/HEAD/docs/report.html -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotframework/RobotDemo/HEAD/docs/style.css -------------------------------------------------------------------------------- /gherkin.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotframework/RobotDemo/HEAD/gherkin.robot -------------------------------------------------------------------------------- /keyword_driven.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotframework/RobotDemo/HEAD/keyword_driven.robot -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotframework/RobotDemo/HEAD/requirements.txt -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotframework/RobotDemo/HEAD/tasks.py --------------------------------------------------------------------------------