David Poetzsch-Heffter
David Poetzsch-Heffter
I'd expect the following to work (I am already wrapping this in timecop): ```ruby Timecop.freeze do Awesomejob.perform_in 0.seconds 'Awesome', true # test with... expect(AwesomeJob).to have_enqueued_sidekiq_job('Awesome', true).in(0.seconds) end ``` Well, it...
I have a [async test suite](http://www.scalatest.org/user_guide/async_testing) that extends `AsyncFunSpec`. Now, it seems to be not possible to also mix-in `GuiceOneAppPerSuite`: ```scala // does not work class PostSpec extends AsyncFunSpec with...
On IE 11 there is a design bug when putting content below the stepper. I created a demo here: http://codepen.io/anon/pen/MJPLNb It will work fine on Chrome/Firefox/Edge but not on IE...
Fixes https://github.com/redhat-cop/podpreset-webhook/issues/1. This just reapplies the patch of https://github.com/redhat-cop/podpreset-webhook/pull/3 which works as stated in https://github.com/redhat-cop/podpreset-webhook/issues/1#issuecomment-965099006
Hi, I'd like to use `redis-mock` in a testing environment to stub the redis database behind `kue`. However, I noticed that kue jobs are never processed when using redis-mock. I...
# tl;dr; This PR implements a huge performance improvement for large files with many html spans (e.g. links). # Full version We recently had a case of a large markdown...
We have a live query on a pointer-typed column. To make it work on Android we added an overloaded version of your `where` method that takes `JSONObject`s so we are...
Hi, we have an app that works just fine with the current parse android version 1.13.1. When adding the dependency for ParseLiveQuery version 1.0.3 the app won't start any more...
This is a suggested fix for issue #25. The new behavior is reflected in the default options section of the demo. Although I generally think this change is for the...
This issue is extracted from point 4 of #24. The problem is demonstrated here: https://codepen.io/anon/pen/Gvywjq Expectation: the inputs of both pickers each use half the horizontal space available. Reality: The...