Sha256: 593085d5fb54c0bdcc7fb28815a9d6cee7f1227c293373395644e24f800e9699

Contents?: true

Size: 1.52 KB

Versions: 2

Compression:

Stored size: 1.52 KB

Contents

require "spec_helper"

describe Timber::CLI::ConfigFile, :rails_23 => true do
  let(:path) { "config/initializers/timber.rb" }
  let(:config_file) { described_class.new(path) }
  let(:initial_contents) { "# Timber.io Ruby Configuration - Simple Structured Logging\n#\n#  ^  ^  ^   ^      ___I_      ^  ^   ^  ^  ^   ^  ^\n# /|\\/|\\/|\\ /|\\    /\\-_--\\    /|\\/|\\ /|\\/|\\/|\\ /|\\/|\\\n# /|\\/|\\/|\\ /|\\   /  \\_-__\\   /|\\/|\\ /|\\/|\\/|\\ /|\\/|\\\n# /|\\/|\\/|\\ /|\\   |[]| [] |   /|\\/|\\ /|\\/|\\/|\\ /|\\/|\\\n# -------------------------------------------------------------------\n# Website:       https://timber.io\n# Documentation: https://timber.io/docs\n# Support:       support@timber.io\n# -------------------------------------------------------------------\n\nconfig = Timber::Config.instance\n\n# Add additional configuration here.\n# For a full list of configuration options and their explanations see:\n# http://www.rubydoc.info/github/timberio/timber-ruby/Timber/Config\n\n" }
  let(:contents_hook) { "# Add additional configuration here." }

  describe ".create!" do
    it "should create" do
      expect(Timber::CLI::FileHelper).to receive(:write).with(path, initial_contents).exactly(1).times
      config_file.create!
    end
  end

  describe ".logrageify!" do
    it "should set the option in the config file" do
      config_file.logrageify!
      new_contents = initial_contents.gsub(contents_hook, "config.logrageify!\n\n#{contents_hook}")
      expect(config_file.send(:content)).to eq(new_contents)
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
timber-2.1.0.rc5 spec/timber/cli/config_file_spec.rb
timber-2.1.0.rc4 spec/timber/cli/config_file_spec.rb