mirror of
https://github.com/plashchynski/crono.git
synced 2026-03-18 15:34:24 +01:00
11 lines
235 B
Ruby
11 lines
235 B
Ruby
require "spec_helper"
|
|
|
|
describe Crono::Config do
|
|
describe "#initialize" do
|
|
it "should initialize schedule with an empty array" do
|
|
@config = Crono::Config.instance
|
|
expect(@config.schedule).to eql([])
|
|
end
|
|
end
|
|
end
|