Adds a fake method with no test coverage to test Undercover gem

This commit is contained in:
filipefurtad0
2025-06-27 12:23:08 +01:00
parent e0efb34fe8
commit 75e0a71e10

View File

@@ -0,0 +1,13 @@
# frozen_string_literal: true
module Spree
module Core
class FakeMethod
# testing Undercover!
# it's a random method, with no test coverage
def square(number)
number * number
end
end
end
end