diff --git a/spec/fixtures/find_in_diff.rb b/spec/fixtures/find_in_diff.rb index ea14920..bef5732 100644 --- a/spec/fixtures/find_in_diff.rb +++ b/spec/fixtures/find_in_diff.rb @@ -1,6 +1,10 @@ # frozen_string_literal: true module FindInDiff + def added_hunk_1 + # This should appear in hunk 1 + end + def method_in_the_middle # Something something... @@ -10,4 +14,8 @@ module FindInDiff # la dee da... end + + def added_hunk_2 + # This should appear in hunk 2 + end end