Remove old files

This commit is contained in:
Michael Miller 2019-10-04 23:16:22 -06:00
parent c458a490bf
commit bff2668ad4
2 changed files with 0 additions and 21 deletions

View file

@ -1,17 +0,0 @@
require "../double"
module Spectator::DSL
# Creates instances of doubles from a specified type.
class DoubleFactory
# Creates the factory.
# The type passed to this constructor must be a double.
def initialize(@double_type : Double.class)
end
# Constructs a new double instance and returns it.
# The *sample_values* are passed to `Double#initialize`.
def build(sample_values : Internals::SampleValues) : Double
@double_type.new
end
end
end

View file

@ -1,4 +0,0 @@
module Spectator::DSL
module MockDSL
end
end