Skip to content
This repository has been archived by the owner on Nov 4, 2020. It is now read-only.
/ django-tdd Public archive

Getting Started in Testing Automation

Notifications You must be signed in to change notification settings

gkzz/django-tdd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Getting Started in Testing Automation

A Learn Material based on "Test Driven Development With Python"
https://www.amazon.com/dp/1449364829

Special thanks to @hjwp

How to setup??

$ git clone git@github.com:gkzz/twbot.git
$ pip install -r requirements.txt

tree

├── config
│   ├── __init__.py
│   ├── settings.py
│   ├── urls.py
│   └── wsgi.py
├── db.sqlite3
├── install
│   └── chromedriver.exe
├── manage.py
├── README.md
├── requirements.txt
├── test01_assert_driver_title.py
└── test02_unittest_driver_title.py

Notes

$ python --version
Python 3.6.5
$ django-admin version
1.11.8
$ cat /etc/os-release
NAME="Ubuntu"
VERSION="16.04.5 LTS (Xenial Xerus)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 16.04.5 LTS"
VERSION_ID="16.04"
HOME_URL="http://www.ubuntu.com/"
SUPPORT_URL="http://help.ubuntu.com/"
BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/"
VERSION_CODENAME=xenial
UBUNTU_CODENAME=xenial

If you face trouble...

plz give me comments!