summaryrefslogtreecommitdiff
path: root/test/cli_test.rb
diff options
context:
space:
mode:
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