lib/cm_quiz/cli.rb in cm_quiz-0.0.2 vs lib/cm_quiz/cli.rb in cm_quiz-0.0.3

- old
+ new

@@ -13,10 +13,12 @@ desc 'test', 'Test your api implement' option :endpoint, required: true, banner: "your-test-endpoint.com" def test endpoint = options[:endpoint] puts "Start test #{endpoint}" + puts "please wait..." message = CmQuiz::ReviewQuiz.new(endpoint).perform + puts message end end end