git-timecost/spec/cli_spec.nok

17 lines
232 B
Text
Raw Normal View History

2023-07-11 16:52:48 +00:00
require "./spec_helper"
2023-07-11 16:52:48 +00:00
require "../src/timecost/cli"
describe TimeCost::CLI do
2023-07-11 16:52:48 +00:00
cli = TimeCost::CLI.new
2023-07-11 16:52:48 +00:00
describe ".new" do
it "can be created without arguments" do
assert_instance_of TimeCost::CLI, cli
end
end
end