mirror of
https://github.com/plashchynski/crono.git
synced 2026-03-18 23:44:27 +01:00
13 lines
332 B
Ruby
13 lines
332 B
Ruby
require "spec_helper"
|
|
|
|
describe Crono::Config do
|
|
describe "#initialize" do
|
|
it "should initialize schedule" do
|
|
@config = Crono::Config.new
|
|
expect(@config.cronotab).to be Crono::Config::CRONOTAB
|
|
expect(@config.logfile).to be Crono::Config::LOGFILE
|
|
expect(@config.daemonize).to be false
|
|
end
|
|
end
|
|
end
|