-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathhelper.rb
52 lines (43 loc) · 1.23 KB
/
helper.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# frozen_string_literal: true
# Taken from jekyll/jekyll-mentions
# (Copyright (c) 2014 GitHub, Inc. Licensened under the MIT).
require "rubygems"
require "minitest/autorun"
require "shoulda/context"
require_relative "../lib/jekyll-archives"
SOURCE_DIR = File.expand_path("source", __dir__)
DEST_DIR = File.expand_path("destination", __dir__)
module Minitest
class Test
def fixture_site(config = {})
Jekyll::Site.new(
Jekyll::Utils.deep_merge_hashes(
Jekyll::Utils.deep_merge_hashes(
Jekyll::Configuration::DEFAULTS,
"source" => SOURCE_DIR,
"destination" => DEST_DIR
),
config
)
)
end
def archive_exists?(site, path)
site.config["archives"].any? { |archive| archive.path == path }
end
def read_file(path)
read_path = File.join(DEST_DIR, path)
return false unless File.exist?(read_path)
File.read(read_path).strip
end
def capture_output(level = :debug)
buffer = StringIO.new
Jekyll.logger = Logger.new(buffer)
Jekyll.logger.log_level = level
yield
buffer.rewind
buffer.string.to_s
ensure
Jekyll.logger = Logger.new(StringIO.new, :error)
end
end
end