mirror of
https://github.com/ansible/awx.git
synced 2026-03-16 08:27:29 -02:30
29 lines
736 B
Python
29 lines
736 B
Python
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
import pytest
|
|
|
|
from awx.main.models import Project
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_create_project(run_module, admin_user, organization):
|
|
result = run_module('tower_project', dict(
|
|
name='foo',
|
|
organization=organization.name,
|
|
scm_type='git',
|
|
scm_url='https://foo.invalid'
|
|
), admin_user)
|
|
assert result.pop('changed', None), result
|
|
|
|
proj = Project.objects.get(name='foo')
|
|
assert proj.scm_url == 'https://foo.invalid'
|
|
assert proj.organization == organization
|
|
|
|
result.pop('invocation')
|
|
assert result == {
|
|
'id': proj.id,
|
|
'project': 'foo',
|
|
'state': 'present'
|
|
}
|