Files
infinitefusion-e18/Data/Scripts/050_AddOns/HttpCalls.rb
2022-12-26 17:07:24 -05:00

8 lines
143 B
Ruby

def test_http_get
url = "http://localhost:8080"
response = HTTPLite.get(url)
if response[:status] == 200
p response[:body]
end
end