Fix require statements

This commit is contained in:
Michael Miller 2019-08-10 12:54:46 -06:00
parent 1d205b6ee9
commit 3c539b3517
3 changed files with 9 additions and 3 deletions

View file

@ -1,4 +1,6 @@
require "./value_matcher"
require "./failed_match_data"
require "./matcher"
require "./successful_match_data"
module Spectator::Matchers
# Matcher that tests whether an expression changed from a specific value.

View file

@ -1,6 +1,8 @@
require "./change_from_matcher"
require "./change_to_matcher"
require "./standard_matcher"
require "./failed_match_data"
require "./matcher"
require "./successful_match_data"
module Spectator::Matchers
# Matcher that tests whether an expression changed.

View file

@ -1,4 +1,6 @@
require "./change_matcher"
require "./failed_match_data"
require "./matcher"
require "./successful_match_data"
module Spectator::Matchers
# Matcher that tests whether an expression changed to a specific value.