git-timecost/spec/cli_spec.rb
2014-09-26 09:42:09 +02:00

16 lines
238 B
Ruby

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