Skip to content

Commit

Permalink
pytest-test old_api_tester.py file relocation
Browse files Browse the repository at this point in the history
  • Loading branch information
benne238 committed Jan 8, 2021
1 parent 98253ad commit 15f9e4c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions api/pytest/old_api_tester.py
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"

0 comments on commit 15f9e4c

Please sign in to comment.