22 lines
272 B
Ruby
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
|