blob: abbe42d9850f60ea6cd98c8297c0e30340b423fa (
plain)
1
2
3
4
5
6
7
8
|
require "testing_env"
class IntegrationCommandTestFormula < IntegrationCommandTestCase
def test_formula
formula_file = setup_test_formula "testball"
assert_equal formula_file.to_s, cmd("formula", "testball")
end
end
|