Use TestValue instead of custom LabeledValue

This commit is contained in:
Michael Miller 2019-08-01 15:40:46 -06:00
parent 763a65beac
commit 99d8f2a845
2 changed files with 1 additions and 10 deletions

View File

@ -1,10 +0,0 @@
module Spectator::Matchers
struct LabeledValue
getter label : Symbol
getter value : String
def initialize(@label, @value)
end
end
end

View File

@ -1,5 +1,6 @@
require "./failed_matched_data"
require "./successful_match_data"
require "./test_value"
module Spectator::Matchers
# Common base class for all expectation conditions.