isamplesorg / isamples_inabox

Provides functionality intermediate to a collection and central
0 stars 1 forks source link

Write unit tests for ModelServerClient #287

Closed dannymandel closed 1 year ago

dannymandel commented 1 year ago

We should write unit tests for ModelServerClient using https://docs.python.org/3/library/unittest.mock.html

e.g.

with patch.object(ModelServerClient, "make_smithsonian_sampled_feature_request", return_value="foo"):

just stub out the Requests call to return canned data.

dannymandel commented 1 year ago

This is done.