Completed
Push — master ( 28b0ba...17cdbf )
by Andrea
01:44
created

met.metadataparser.SimpleTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %
Metric Value
dl 0
loc 6
rs 10
wmc 1
1
#################################################################
2
# MET v2 Metadate Explorer Tool
3
#
4
# This Software is Open Source. See License: https://github.com/TERENA/met/blob/master/LICENSE.md
5
# Copyright (c) 2012, TERENA All rights reserved.
6
#
7
# This Software is based on MET v1 developed for TERENA by Yaco Sistemas, http://www.yaco.es/
8
# MET v2 was developed for TERENA by Tamim Ziai, DAASI International GmbH, http://www.daasi.de
9
# Current version of MET has been revised for performance improvements by Andrea Biancini,
10
# Consortium GARR, http://www.garr.it
11
#########################################################################################
12
13
"""
14
This file demonstrates writing tests using the unittest module. These will pass
15
when you run "manage.py test".
16
17
Replace this with more appropriate tests for your application.
18
"""
19
20
from django.test import TestCase
21
22
23
class SimpleTest(TestCase):
24
    def test_basic_addition(self):
25
        """
26
        Tests that 1 + 1 always equals 2.
27
        """
28
        self.assertEqual(1 + 1, 2)
29