We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 598145b commit d5c4bc3Copy full SHA for d5c4bc3
test/test.rb
@@ -31,6 +31,14 @@ def test_info_response
31
assert data.count > 0
32
end
33
34
+ def test_latest_response
35
+ get "/launches/latest"
36
+ assert last_response.ok?
37
+ data = JSON.parse(last_response.body)
38
+ # Test out some data that is unlikely to ever change
39
+ assert data.count > 0
40
+ end
41
+
42
def test_launchpads_response
43
get "/launchpads"
44
assert last_response.ok?
0 commit comments