mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Fix require statements
This commit is contained in:
parent
1d205b6ee9
commit
3c539b3517
3 changed files with 9 additions and 3 deletions
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue