mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-07 13:15:01 +00:00
8 lines
143 B
Ruby
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 |