Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolfe1 committed Dec 3, 2020
1 parent 73ef8ac commit 3dba13a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/API/test_validate.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,10 @@ def test_key_by_key_validator_list_int(self):
library = APILibrary()
library.key_by_key_validator({"a": [1]}, {"a": [1]})

def test_key_by_key_validator_list_empty(self):
library = APILibrary()
library.key_by_key_validator({"a": []}, {"a": []})

def test_key_by_key_validator_simple_ignored_key(self):
library = APILibrary()
library.key_by_key_validator({"a": ["1"]}, {"a": ["1"]}, ["a"])
Expand Down

0 comments on commit 3dba13a

Please sign in to comment.