mirror of
https://github.com/ansible/awx.git
synced 2026-01-18 21:21:21 -03:30
Adding license code, fixed app version in group_vars/all, added Django14 to packages.yml
This commit is contained in:
parent
5500a5647d
commit
e992fae303
25
awx/main/tests/licenses.py
Normal file
25
awx/main/tests/licenses.py
Normal file
@ -0,0 +1,25 @@
|
||||
# Copyright (c) 2013 AnsibleWorks, Inc.
|
||||
# All Rights Reserved.
|
||||
|
||||
import datetime
|
||||
import json
|
||||
|
||||
from django.conf import settings
|
||||
from django.contrib.auth.models import User as DjangoUser
|
||||
import django.test
|
||||
from django.test.client import Client
|
||||
from django.core.urlresolvers import reverse
|
||||
from awx.main.models import *
|
||||
from awx.main.tests.base import BaseTest
|
||||
from awx.main.licenses import *
|
||||
|
||||
class LicensesTest(BaseTest):
|
||||
|
||||
def setUp(self):
|
||||
super(LicensesTest, self).setUp()
|
||||
|
||||
def test_license_writer(self):
|
||||
assert 2 == 4
|
||||
|
||||
def test_license_reader(self):
|
||||
assert 2 == 3
|
||||
Loading…
x
Reference in New Issue
Block a user