What's the best way to test dynamic/custom resourc...
# getting-started
a
What's the best way to test dynamic/custom resources?
g
Integration tests IMO. Or are you looking for some mock?
a
I'm building a resource lib and wanted to test it automatically.
Right now I'm simply coding as I go, but I thought some tests would be nice, to make sure things aren't falling apart later
g
For pulumi resources there isn't much more you can test than this (AFAIK) https://www.pulumi.com/docs/guides/testing/
🙂 1
a
Okay, thanks!