Don't expose attributes_with_uninitialized_key utility method

It is not a test case.
This commit is contained in:
Ryuta Kamizono 2018-01-30 10:15:01 +09:00
parent 4734812ec5
commit 393d497a53

@ -209,11 +209,6 @@ def assert_valid_value(*)
assert_equal "value from user", attributes.fetch_value(:foo)
end
def attributes_with_uninitialized_key
builder = AttributeSet::Builder.new(foo: Type::Integer.new, bar: Type::Float.new)
builder.build_from_database(foo: "1.1")
end
test "freezing doesn't prevent the set from materializing" do
builder = AttributeSet::Builder.new(foo: Type::String.new)
attributes = builder.build_from_database(foo: "1")
@ -253,5 +248,11 @@ def attributes_with_uninitialized_key
assert_equal attributes, attributes2
assert_not_equal attributes2, attributes3
end
private
def attributes_with_uninitialized_key
builder = AttributeSet::Builder.new(foo: Type::Integer.new, bar: Type::Float.new)
builder.build_from_database(foo: "1.1")
end
end
end