summaryrefslogtreecommitdiffstats
path: root/test/app_test.rb
diff options
context:
space:
mode:
authorZack Hobson2011-12-30 19:32:54 -0800
committerZack Hobson2011-12-30 19:32:54 -0800
commit3d8a797c6d0223189ac921ae28c9056e71f0e0ae (patch)
tree609324e0838c361e661dfa62537ff13bea7d8876 /test/app_test.rb
parent52b158e13aafb59055a3151ea5ef7325646ab1de (diff)
downloadhcl-3d8a797c6d0223189ac921ae28c9056e71f0e0ae.tar.bz2
ruby 1.9.x fixes
fixed some warnings and errors on modern rubies also fixed an issue with the "stop" command not accepting a message
Diffstat (limited to 'test/app_test.rb')
-rw-r--r--test/app_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/app_test.rb b/test/app_test.rb
index 1683b9c..ec13e46 100644
--- a/test/app_test.rb
+++ b/test/app_test.rb
@@ -3,6 +3,6 @@ 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 }
+ assert HCl::Commands.instance_methods.all? { |c| app.command? c }, 'all methods are commands'
end
end