summaryrefslogtreecommitdiffstats
path: root/test/app_test.rb
blob: 1683b9cfc2e274e9998570bf34d458890319dcd5 (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  }
  end
end