blob: ec13e4681b49754fca3c6dc41cb20000b266f5e5 (
plain)
1
2
3
4
5
6
7
8
|
require 'test_helper'
class AppTest < Test::Unit::TestCase
should "permit commands from the HCl::Commands module" do
app = HCl::App.new
assert HCl::Commands.instance_methods.all? { |c| app.command? c }, 'all methods are commands'
end
end
|