Get rid of some warnings from Ruby

This commit is contained in:
Elliot Winkler 2017-07-24 22:48:41 -05:00
parent 45ac5f5d75
commit deea94e853
3 changed files with 0 additions and 5 deletions

View File

@ -1,7 +1,5 @@
module UnitTests
class Attribute
attr_reader :name, :column_type, :column_options
DEFAULT_COLUMN_TYPE = :string
DEFAULT_COLUMN_OPTIONS = {
null: false,

View File

@ -14,7 +14,6 @@ module UnitTests
:arguments,
:attribute_default_values_by_name,
:attribute_name,
:customize_model,
:model_name,
)

View File

@ -4,8 +4,6 @@ module UnitTests
class ValidationMatcherScenario
extend Forwardable
attr_reader :matcher
def initialize(arguments)
@arguments = arguments.dup
@matcher_proc = @arguments.delete(:matcher_proc)