X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/23a00f051576d2e7edd18b6af382902cc34ea4a2..92a150d9e45379ea8c14e1b10293d659f60eb132:/tests/cantfit.py?ds=inline diff --git a/tests/cantfit.py b/tests/cantfit.py index 816cdef..e15e69c 100644 --- a/tests/cantfit.py +++ b/tests/cantfit.py @@ -28,6 +28,13 @@ normal_name = normal_function_name( string_variable_name = ( "a string that is waaaaaaaayyyyyyyy too long, even in parens, there's nothing you can do" # noqa ) +for key in """ + hostname + port + username +""".split(): + if key in self.connect_kwargs: + raise ValueError(err.format(key)) # output @@ -71,3 +78,10 @@ normal_name = normal_function_name( this_is_a_ridiculously_long_name_and_nobody_in_their_right_mind_would_use_one_like_it=0, ) string_variable_name = "a string that is waaaaaaaayyyyyyyy too long, even in parens, there's nothing you can do" # noqa +for key in """ + hostname + port + username +""".split(): + if key in self.connect_kwargs: + raise ValueError(err.format(key))