Jon Leighton
Jon Leighton
Example code: ``` ruby class Thing < PushType::Node field :name, :string end t = Thing.new t.name? # => false, expected t.name = "" t.name? # => false, expected t.name =...
* Some fixtures had to be re-recorded. To achieve this I had to temporarily edit the relevant tests to ensure there were no errors, so that the recording was saved....
Thanks for Walkman! 🙇 I trialled it as a replacement for exvcr. Unfortunately I don't think it will work for my use case currently. I have database records which are...
I have an external API under test, let's call it Twitter for the sake of the example. Suppose my real implementation is `MyApp.Twitter.LiveClient`, and I am using [Mox](https://github.com/dashbitco/mox) to be...
If this path isn't present, Walkman will exit with an error: ``` ▏ ▏** (exit) exited in: GenServer.call(#PID, :finish, 5000) ▏ ▏ ▏ ▏** (EXIT) an exception was raised: ▏...
Hiya, I have a URI like this: http:://test.host/resource?date=2010-07-28T14:19:47Z When Net::HTTP sends the request, it has turned it into: http:://test.host/resource?date=2010-07-28T14%3A19%3A47Z Which then doesn't get matched by FakeWeb. If I put the...
I'm switching from using statsd to using this gem, and I was surprised to not be able to find any code which is ensuring a final flush is performed before...
Hi there! :wave: I read [your post](https://groups.google.com/g/phoenix-core/c/nYJm4MaBcKk?pli=1) about this on the Phoenix mailing list. It looks great and would be very useful, especially on environments like Heroku where Distributed Elixir...
Hey, Thanks for great and useful plugin. It might be useful to have a list of params which are by default always allowed through, such as: authenticity_token, _method, id, etc....
It would be good to be able to specify: param_accessible :all If there is a param_accessible declaration in a superclass of the controller, then this would allow the params to...