1
0
mirror of https://github.com/cmur2/openvpn-status-web.git synced 2024-06-01 20:34:41 +02:00
openvpn-status-web/spec/spec_helper.rb
2013-05-03 21:38:10 +02:00

22 lines
517 B
Ruby

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