Files
crono/spec/config_spec.rb
Dzmitry Plashchynski b301b95ae5 Add Crono.config
2015-03-03 18:40:33 +02:00

11 lines
219 B
Ruby

require "spec_helper"
describe Crono::Config do
describe "#initialize" do
it "should initialize schedule" do
@config = Crono.config
expect(@config.schedule).to be_a(Crono::Schedule)
end
end
end