Files
crono/spec/cli_spec.rb
Dzmitry Plashchynski 5e3ca985e3 Add initial CLI class
2015-03-02 21:08:07 +02:00

14 lines
276 B
Ruby

require "spec_helper"
require 'periodicity/cli'
describe Periodicity::CLI do
let(:cli) { Periodicity::CLI.instance }
describe "#run" do
it "should try to initialize rails with #load_rails" do
expect(cli).to receive(:load_rails)
cli.run
end
end
end