As a hobby project I'm developing a small Bash unit testing framework. Now that the basic features are implemented the next step would be to write tests for it.
But how do I test my framework using the framework itself?
I've tried to Google an answer to this question but wasn't able to find anything about this subject.
The idea I've come up with so far is writing tests for some trivial things which make use of all the features of the testing framework itself. If the tests are all green, then fine. These basic test could also serve as some sort of documentation.
But I don't know if this is actually a good approach.