Tom Chipchase
Tom Chipchase
I was wondering if anyone had any suggestions for mocking responses, and validating that the mock data matches the schema? I'm modifying some code that calls a deprecated query to...
The following example code causes an infinite loop and a stack level too deep error: ``` Montrose.weekly( on: [:sunday], between: Date.new(2024, 1, 1)..Date.new(2024, 1, 7), at: Time.zone.parse("2000-01-01 21:00") ) ```...
We've seen an issue where in a rails request spec we have something like this: ``` it "returns a failure" do post some_path(**args) expect(response).to be_created end ``` In cases where...