Files
bit/spec/integration/ping_spec.cr
T
Juan Rodriguez 814fd83d32 test: ping spec
2024-05-13 22:59:22 +02:00

11 lines
199 B
Crystal

require "../spec_helper"
describe App::Controllers::Ping do
it "should return pong" do
get "/api/ping"
expected = {"pong" => "ok"}.to_json
response.body.should eq(expected)
end
end