refactor(dynamic): enhance Django CBV handling by distinguishing ClassMethod entry kinds, improve test coverage across fixtures, and refine run_spec logic

This commit is contained in:
elipeter 2026-05-25 09:52:47 -05:00
parent 6d0e4a5afd
commit cb3b39d892
11 changed files with 326 additions and 26 deletions

View file

@ -0,0 +1,9 @@
from django.views import View
import os
class UserCommandView(View):
def get(self, payload):
os.system(payload)
return "ok"