Skip to content

Commit

Permalink
Minor edits (#203)
Browse files Browse the repository at this point in the history
* fix : minor edit in tests

* fix : minor edit in tests
  • Loading branch information
sepandhaghighi committed May 17, 2022
1 parent 6b83767 commit a9ef25c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Expand Up @@ -5,7 +5,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
- Added `ASCII_FONTS` and `ASCII_ARTS` to `art_param.py`
### Added
- `ASCII_FONTS` list
- `ASCII_ARTS` list
## [5.6] - 2022-04-20
### Added
- 7 new font
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -171,7 +171,7 @@ art.art.artError: The 'number' type must be int.

* Note1 : Use `ART_NAMES` to access all arts name list (new in `Version 4.2`)
* Note2 : Use `NON_ASCII_ARTS` to access all Non-ASCII arts name list (new in `Version 4.6`)
* Note3 : Use `ASCII_ARTS` to access all ASCII arts name list.
* Note3 : Use `ASCII_ARTS` to access all ASCII arts name list (new in `Version 5.7`)

### ASCII text

Expand Down Expand Up @@ -348,7 +348,7 @@ Filename: test.txt

* Note1 : Use `FONT_NAMES` to access all fonts name list (new in `Version 4.2`)
* Note2 : Use `NON_ASCII_FONTS` to access all Non-ASCII fonts name list (new in `Version 4.4`)
* Note3 : Use `ASCII_FONTS` to access all ASCII fonts name list.
* Note3 : Use `ASCII_FONTS` to access all ASCII fonts name list (new in `Version 5.7`)

### Decoration

Expand Down
4 changes: 4 additions & 0 deletions art/test2.py
Expand Up @@ -3008,6 +3008,10 @@
'OK'
>>> Data["Status"]
True
>>> FONT_COUNTER == (len(ASCII_FONTS) + len(NON_ASCII_FONTS))
True
>>> ART_COUNTER == (len(ASCII_ARTS) + len(NON_ASCII_ARTS))
True
>>> os.remove("antrophobia.txt")
>>> os.remove("fancy37.txt")
>>> os.remove("fancy6dec.txt")
Expand Down

0 comments on commit a9ef25c

Please sign in to comment.