Sha256: ee90cd2834626370ec141870fd2f8e061f9cc4afd3d71488233e0002dc0bfb8c

Contents?: true

Size: 1.65 KB

Versions: 6

Compression:

Stored size: 1.65 KB

Contents

require "spec_helper"

describe Timber::CLI::ConfigFile, :rails_23 => true do
  let(:api) { Timber::CLI::API.new("abcd1234") }
  let(:file_helper) { @file_helper = Timber::CLI::FileHelper.new(api) }
  let(:path) { "config/initializers/timber.rb" }
  let(:config_file) { described_class.new(path, file_helper) }
  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(config_file.file_helper).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

6 entries across 6 versions & 1 rubygems

Version Path
timber-2.1.4 spec/timber/cli/config_file_spec.rb
timber-2.1.3 spec/timber/cli/config_file_spec.rb
timber-2.1.2 spec/timber/cli/config_file_spec.rb
timber-2.1.1 spec/timber/cli/config_file_spec.rb
timber-2.1.0 spec/timber/cli/config_file_spec.rb
timber-2.1.0.rc6 spec/timber/cli/config_file_spec.rb