Files
game-data/spec/spec_helper.rb
Gregory Ballantine 40cfdcc2a3
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Changed naming from Routes to Controllers; fixed some Sinatra modular layout stuff; added RSpec for testing and some basic tests
2025-08-12 16:15:43 -04:00

22 lines
272 B
Ruby

# frozen_string_literal: true
ENV['APP_ENV'] = 'test'
require_relative '../src/server'
require 'rspec'
require 'rack/test'
module RSpecMixin
include Rack::Test::Methods
def app
GameData
end
end
RSpec.configure do |config|
config.include(RSpecMixin)
end