Fix tests
This commit is contained in:
parent
bf5ee0ea09
commit
ba18946736
|
|
@ -4,13 +4,15 @@ from graphql_relay import to_global_id
|
||||||
|
|
||||||
from api.schema import schema
|
from api.schema import schema
|
||||||
from api.utils import get_graphql_mutation, get_object
|
from api.utils import get_graphql_mutation, get_object
|
||||||
from books.factories import ContentBlockFactory
|
from books.factories import ContentBlockFactory, ModuleFactory
|
||||||
from books.models import ContentBlock
|
from books.models import ContentBlock
|
||||||
|
|
||||||
|
|
||||||
class NewContentBlockMutationTest(TestCase):
|
class NewContentBlockMutationTest(TestCase):
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
content_block = ContentBlockFactory()
|
module = ModuleFactory()
|
||||||
|
content_block = ContentBlockFactory(module=module)
|
||||||
|
|
||||||
self.sibling_id = to_global_id('ContentBlock', content_block.pk)
|
self.sibling_id = to_global_id('ContentBlock', content_block.pk)
|
||||||
|
|
||||||
def test_add_new_content_block(self):
|
def test_add_new_content_block(self):
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue