Skip to content

Commit

Permalink
Add more test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
henriholopainen committed Oct 26, 2023
1 parent be040e6 commit 71ca016
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/data/cases/fmtskip7.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,15 @@
c = 9 #fmt: skip
d = "thisisasuperlongstringthisisasuperlongstringthisisasuperlongstringthisisasuperlongstring" #fmt:skip

if True: print("yay") # fmt: skip
class Foo: ... # fmt: skip

# output

a = "this is some code"
b = 5 # fmt:skip
c = 9 # fmt: skip
d = "thisisasuperlongstringthisisasuperlongstringthisisasuperlongstringthisisasuperlongstring" # fmt:skip

if True: print("yay") # fmt: skip
class Foo: ... # fmt: skip

0 comments on commit 71ca016

Please sign in to comment.