Sha256: 592cff85f9f23c485ebbeede832266e9039e97087a9b7dc225394459f94c55f3

Contents?: true

Size: 417 Bytes

Versions: 1

Compression:

Stored size: 417 Bytes

Contents

require "spec_helper"

describe Crono::Config do
  describe "#initialize" do
    it "should initialize with default configuration options" do
      @config = Crono::Config.new
      expect(@config.cronotab).to be Crono::Config::CRONOTAB
      expect(@config.logfile).to be Crono::Config::LOGFILE
      expect(@config.pidfile).to be Crono::Config::PIDFILE
      expect(@config.daemonize).to be false
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
crono-0.5.0 spec/config_spec.rb