require_relative 'spec_helper' require 'timecost/cli' describe TimeCost::CLI do let(:cli) { TimeCost::CLI.new } describe '.new' do it "can be created without arguments" do assert_instance_of TimeCost::CLI, cli end end end