blob: d2dc871f4096f60c01dc6a2bd178a489adaf360b (
plain)
1
2
3
4
5
6
7
8
|
require "testing_env"
class IntegrationCommandTestDoctor < IntegrationCommandTestCase
def test_doctor
assert_match "This is an integration test",
cmd_fail("doctor", "check_integration_test")
end
end
|