Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,13 @@ code to get those tests passing- using SQLAlchemy, it should be much easier.

### Tips and Tricks

- The bodies of all functions in `dog.py` except `create_table()` and `save()`
- The bodies of all functions in `dog.py` except `create_table()`, `save()`, and `update_breed()`
should be composed of a single line of code.
- Read through the `pytest` error messages to make sure the input and output
for your functions match the tests.
- Remember which attributes are required when designing a SQLAlchemy data
model: a `__tablename__`, a `primary_key`, and one or more `Column`s.
- Consider whether `dog.py` needs any additional import(s) to complete the functions.

Once all of your tests are passing, commit and push your work using `git` to
submit.
Expand Down