add mutations to questions and reviews

This commit is contained in:
João Geonizeli
2022-07-21 15:10:49 -03:00
parent d38acaab98
commit 3ce6c421b1
18 changed files with 909 additions and 6 deletions

View File

@@ -0,0 +1,13 @@
# frozen_string_literal: true
require "rails_helper"
describe ProgressTestSchema do
context "schema dump" do
it "is updated" do
File.open(described_class::DEFINITION_DUMP_PATH, "r") do |f|
expect(f.read).to(eq(described_class.to_definition))
end
end
end
end