-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspec_helper.rb
More file actions
33 lines (29 loc) · 1.02 KB
/
spec_helper.rb
File metadata and controls
33 lines (29 loc) · 1.02 KB
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
# frozen_string_literal: true
require 'byebug'
require "morse_binary_tree"
require "binary_search"
require "node"
require "binary_node"
require "simple_writer"
require "writer_decorator"
require "numbering_writer"
require "time_stamping_writer"
require "data_structures/linked_list/linked_list"
require "data_structures/b_tree"
require "data_structures/heap"
require "data_structures/heap_tree/node"
require "data_structures/linked_list/double_linked_list"
require "data_structures/linked_list/circular_linked_list"
require "data_structures/linked_list/circular_linked_list/error"
require "data_structures/linked_list/error"
require "data_structures/linked_list/node"
require "data_structures/linked_list/double_node"
RSpec.configure do |config|
# Enable flags like --only-failures and --next-failure
config.example_status_persistence_file_path = ".rspec_status"
# Disable RSpec exposing methods globally on `Module` and `main`
config.disable_monkey_patching!
config.expect_with :rspec do |c|
c.syntax = :expect
end
end