blob: 0b4c90b2998b7ba2f8aedd3246f83184eb261b7b (
plain)
1
2
3
4
5
6
7
8
|
require 'test_helper'
class AppTest < Test::Unit::TestCase
def test_commands
app = HCl::App.new
assert HCl::Commands.instance_methods.all? { |c| app.command? c }, 'all methods are commands'
end
end
|