-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pytest-test old_api_tester.py file relocation
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import pytest | ||
from ECNQueue import Queue, Item | ||
|
||
testQueue = Queue("ce") | ||
|
||
@pytest.mark.name | ||
def test_Name(): | ||
assert type(testQueue.name) == str | ||
assert testQueue.name == "ce" | ||
|
||
@pytest.mark.Items | ||
def test_Items(): | ||
assert type(testQueue.items) == list | ||
assert len(testQueue.items) == 48 | ||
|
||
def test_Json(): | ||
assert type(testQueue.jsonData["name"]) == str | ||
assert testQueue.name == testQueue.jsonData["name"] | ||
assert type(len(testQueue.items)) == int | ||
assert len(testQueue.items) == testQueue.jsonData["length"] | ||
assert testQueue.items[0].jsonData["number"] == "17" |