summaryrefslogtreecommitdiff
path: root/test/cli_test.rb
diff options
context:
space:
mode:
authorpseudomuto <david.muto@gmail.com>2013-12-18 15:55:46 -0500
committerpseudomuto <david.muto@gmail.com>2013-12-18 16:17:10 -0500
commitc3a72795ecab47f94527e079b60549051843caa4 (patch)
tree0e424b9739e7ade1ad0c9095c91bf41ef7a1da7d /test/cli_test.rb
parent69ed82efa8319e7fbde9df95a4fad4ee96aa5074 (diff)
switching from test unit to minitest
Diffstat (limited to 'test/cli_test.rb')
-rw-r--r--test/cli_test.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/cli_test.rb b/test/cli_test.rb
index 6c43e2c..2bf3b65 100644
--- a/test/cli_test.rb
+++ b/test/cli_test.rb
@@ -1,5 +1,5 @@
require 'test_helper'
-silent{ load 'bin/dashing' }
+load_quietly 'bin/dashing'
module Thor::Actions
def source_paths
@@ -12,7 +12,7 @@ class CliTest < Dashing::Test
def test_project_directory_created
temp do |dir|
cli = Dashing::CLI.new
- silent{ cli.new 'Dashboard' }
+ silent { cli.new 'Dashboard' }
assert Dir.exist?(File.join(dir,'dashboard')), 'Dashing directory was not created.'
end
end
@@ -25,4 +25,4 @@ class CliTest < Dashing::Test
assert_equal 'super-power-rangers', Dashing::CLI.hyphenate('SuperPowerRangers')
end
-end \ No newline at end of file
+end