Jonathan O'Connor
Jonathan O'Connor
Is is possible to convert `std::basic_string` to `string`? I tried modifying the config files, with no luck. Also, I didn't see any examples of that kind of simplification.
**Channel** C++Weekly episode request **Topics** std::exception_ptr seems to have no practical use at all. All you can do is get an exception_ptr using `std::currenct_exception()` and then rethrow it. That would...
I have a very large class I want to mock, and I created a function to set all these expectations, which I then call from the test. Sadly, this always...
I found that there was a bug in the load_fixtures method, which was not returning the original load_fixtures result. This meant that fixtures were unavailable in test code with test_data...
I found that when I have a test_data block, fixtures are never found. Reason: the load_fixtures should return the value of original_load_fixtures. Instead it returns an empty array. As this...
### Exact URL of where the bug happened https://lichess.org/study/rbW9rOnE/owuHAXqr ### Steps to reproduce the bug 1. Go to any shared study that you have contributor rights to. 2. Turn on...
When I run ``` bin/cap --dry-run production deploy ``` I get the following warning at the start: ``` [Deprecation Notice] `set :scm, :git` is deprecated. To ensure your project is...