16 lines
417 B
Python
16 lines
417 B
Python
from core.tests.base_test import SkillboxTestCase
|
|
|
|
|
|
class AssignmentReadOnlyTestCase(SkillboxTestCase):
|
|
def test_edit_assignment_fails(self):
|
|
raise NotImplementedError()
|
|
|
|
def test_share_assignment_fails(self):
|
|
raise NotImplementedError()
|
|
|
|
def test_edit_feedback_fails(self):
|
|
raise NotImplementedError()
|
|
|
|
def test_share_feedback_fails(self):
|
|
raise NotImplementedError()
|