mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 15:49:55 +08:00
c889b676f8
- Read in schemas from actual json files instead of a ruby hash. This is helpful because we will be automatically generating .json schema files from json responses and don't want to manually write ruby hash schema files. - Create a helper method for rspec schema validation tests to dry up code
19 lines
261 B
Ruby
19 lines
261 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'json'
|
|
|
|
module SpecSchemas
|
|
|
|
class SpecLoader
|
|
|
|
def initialize(filename)
|
|
@filename = filename
|
|
end
|
|
|
|
def load
|
|
JSON.parse(File.read(File.join(__dir__, "json", "#{@filename}.json")))
|
|
end
|
|
end
|
|
|
|
end
|