scenario cleanup

This commit is contained in:
Dylan Hurd
2026-01-08 09:50:10 -08:00
parent 961270022d
commit 6ce70dbb5c
22 changed files with 48 additions and 8 deletions

View File

@@ -0,0 +1,6 @@
foo
bar
one
bar
bar
two

View File

@@ -0,0 +1,6 @@
foo
bar
bar
bar
bar
baz

View File

@@ -0,0 +1,11 @@
*** Begin Patch
*** Update File: foo.txt
@@ foo
@@ bar
-bar
+one
@@ bar
@@ bar
-baz
+two
*** End Patch

View File

@@ -1,10 +1,10 @@
class BaseClass:
def method():
def method(self):
# to_add
pass
class OtherClass:
def method():
def method(self):
# untouched
pass

View File

@@ -1,10 +1,10 @@
class BaseClass:
def method():
def method(self):
# to_add
pass
class OtherClass:
def method():
def method(self):
# untouched
pass

View File

@@ -1,12 +1,12 @@
*** Begin Patch
*** Update File: success.py
@@ class BaseClass:
@@ def method():
@@ def method(self):
- # to_remove
+ # to_add
*** Update File: failure.py
@@ class Foo:
@@ def missing():
@@ def missing(self):
- # to_remove
+ # to_add
*** End Patch

View File

@@ -0,0 +1,5 @@
class Foo:
# this is a comment
def foo(self):
# to_add
pass

View File

@@ -0,0 +1,5 @@
class Foo:
# this is a comment
def foo(self):
# to_remove
pass

View File

@@ -0,0 +1,7 @@
*** Begin Patch
*** Update File: skip.py
@@ class Foo:
@@ def foo(self):
- # to_remove
+ # to_add
*** End Patch