···3939 add_group "Properties", "lib/literal/properties.rb"
4040 end
4141end
4242+4343+class Quickdraw::Test
4444+ def assert_subtype(subtype, supertype)
4545+ assert Literal.subtype?(subtype, of: supertype) do
4646+ "Expected #{subtype.inspect} to be a subtype of #{supertype.inspect}."
4747+ end
4848+ end
4949+5050+ def refute_subtype(subtype, supertype)
5151+ refute Literal.subtype?(subtype, of: supertype) do
5252+ "Expected #{subtype.inspect} not to be a subtype of #{supertype.inspect}."
5353+ end
5454+ end
5555+end