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