nyx/tests/dynamic_fixtures/class_method/ruby/benign.rb

12 lines
195 B
Ruby
Raw Permalink Normal View History

2026-06-05 10:16:30 -05:00
# Phase 19 (Track M.1) — class-method benign control for Ruby.
require 'shellwords'
class UserService
def initialize
end
def run(input)
`true #{Shellwords.escape(input)}`
end
end