blob: 449b7b5b3e95d35f8b6a889d8093ff0c282b1bb4 (
plain)
1
2
3
4
5
6
7
8
|
require "helper/integration_command_test_case"
class IntegrationCommandTestSh < IntegrationCommandTestCase
def test_sh
assert_match "Your shell has been configured",
cmd("sh", "SHELL" => which("true"))
end
end
|