mirror of
https://github.com/plashchynski/crono.git
synced 2026-03-18 15:34:24 +01:00
14 lines
258 B
Ruby
14 lines
258 B
Ruby
require "spec_helper"
|
|
require 'crono/cli'
|
|
|
|
describe Crono::CLI do
|
|
let(:cli) { Crono::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
|