summaryrefslogtreecommitdiff
path: root/spec/ruby/optional/capi/fixtures/kernel.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/optional/capi/fixtures/kernel.rb')
-rw-r--r--spec/ruby/optional/capi/fixtures/kernel.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/spec/ruby/optional/capi/fixtures/kernel.rb b/spec/ruby/optional/capi/fixtures/kernel.rb
new file mode 100644
index 0000000000..d3fc7c57e8
--- /dev/null
+++ b/spec/ruby/optional/capi/fixtures/kernel.rb
@@ -0,0 +1,19 @@
+class CApiKernelSpecs
+ class ClassWithPublicMethod
+ def public_method(*, **)
+ :public
+ end
+ end
+
+ class ClassWithPrivateMethod
+ private def private_method(*, **)
+ :private
+ end
+ end
+
+ class ClassWithProtectedMethod
+ protected def protected_method(*, **)
+ :protected
+ end
+ end
+end