Uh oh!
There was an error while loading. Please reload this page.
Add system test for insert/fetch of rows w/ nested schema. - #3140
Conversation
daspecster
commented
Mar 14, 2017
tseaver
commented
Mar 15, 2017
@daspecster, @dhermes Any issues? |
| self.assertEqual(len(fetched), len(to_insert)) | ||
| for found, expected in zip(sorted(fetched), sorted(to_insert)): | ||
| self.assertEqual(found[0], expected[0]) # Name |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
| for found, expected in zip(sorted(fetched), sorted(to_insert)): | ||
| self.assertEqual(found[0], expected[0]) # Name | ||
| self.assertEqual(found[1], int(expected[1])) # Age |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
| e_icon = base64.standard_b64decode( | ||
| e_spell['Icon'].encode('ascii')) | ||
| self.assertEqual(f_spell['Icon'], e_icon) |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
| @@ -0,0 +1,66 @@ | |||
| [ | |||
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
tseaver
commented
Mar 20, 2017
@dhermes I think I answered your questions. |
tseaver
commented
Mar 21, 2017
@dhermes, @lukesneeringer, @daspecster Any remaining issues? |
lukesneeringer
commented
Mar 21, 2017
None from me. :-) |
…-insert-fetch-w-complex-schema Add system test for insert/fetch of rows w/ nested schema.
Uses #3118 as a base.Derived from schema / data from @tswast.
Toward #3029.