1
0
mirror of https://github.com/cmur2/openvpn-status-web.git synced 2025-07-03 04:30:24 +02:00
Files
openvpn-status-web/spec/spec_helper.rb
2020-03-07 01:30:57 +01:00

23 lines
517 B
Ruby

# frozen_string_literal: true
require 'rubygems'
require 'bundler/setup'
require 'rack/test'
require 'openvpn-status-web'
def status_v1
text = File.open('examples/status.v1', 'rb', &:read)
OpenVPNStatusWeb::Parser::V1.new.parse_status_log text
end
def status_v2
text = File.open('examples/status.v2', 'rb', &:read)
OpenVPNStatusWeb::Parser::V2.new.parse_status_log text
end
def status_v3
text = File.open('examples/status.v3', 'rb', &:read)
OpenVPNStatusWeb::Parser::V3.new.parse_status_log text
end