discourse/spec/fabricators/web_hook_event_fabricator.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
164 B
Ruby
Raw Normal View History

# frozen_string_literal: true
Fabricator(:web_hook_event) do
web_hook { Fabricate(:web_hook) }
payload { { some_key: "some_value" }.to_json }
status 200
end