GithubReadmeTag
dynamic classes and verifying doubles are order dependent
The Github::OauthClient
wraps another class (Octokit) and uses method_missing to define api access as needed. Unfortunately, this means instance methods, other than the overridden "inspect", are not defined until they're called - and rspec will fail if this is run out of order.
A dirty solution would be to instantiate an oauth client, call readme, accept that it fails, and then execute the test. A "better" solution might be to have the client class list the known instance methods (we're using maybe 10) and pre-define them at load time.
https://github.com/djuber/forem/commit/d414f7e55 maybe something like this. Or what Rhymes did the first time https://github.com/forem/forem/commit/3130261384#diff-058371fd17700cbee2b084681a6515dc723daf206855881cbf8bb44d9774cab7R21-R27
Last updated
Was this helpful?