blob: 4cfd19c3dc6a5625de9aa59f9b220d864e6e3fbf (
plain)
1
2
3
4
5
6
7
8
|
require "helper/integration_command_test_case"
class IntegrationCommandTestCat < IntegrationCommandTestCase
def test_cat
formula_file = setup_test_formula "testball"
assert_equal formula_file.read.chomp, cmd("cat", "testball")
end
end
|