diff options
Diffstat (limited to 'Library/Homebrew/test/test_integration_cmds_cat.rb')
| -rw-r--r-- | Library/Homebrew/test/test_integration_cmds_cat.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Library/Homebrew/test/test_integration_cmds_cat.rb b/Library/Homebrew/test/test_integration_cmds_cat.rb new file mode 100644 index 000000000..ad4ef199b --- /dev/null +++ b/Library/Homebrew/test/test_integration_cmds_cat.rb @@ -0,0 +1,8 @@ +require "integration_cmds_tests" + +class IntegrationCommandTestCat < IntegrationCommandTests + def test_cat + formula_file = setup_test_formula "testball" + assert_equal formula_file.read.chomp, cmd("cat", "testball") + end +end |
