Sha256: f784538523192acfcfbca8fcbc1c72d883a8f4f02604152c18fa52345206e8e2
Contents?: true
Size: 275 Bytes
Versions: 14
Compression:
Stored size: 275 Bytes
Contents
# frozen_string_literal: true RSpec::Matchers.define :have_attribute_definition do |attribute_name| match do |attribute| attribute.has_attribute_definition?(attribute_name, @attribute_type) end chain :attribute_type do |type| @attribute_type = type end end
Version data entries
14 entries across 14 versions & 1 rubygems