20 lines
315 B
Python
20 lines
315 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
Acceptance Test
|
|
~~~~~~~~~~~~~~~
|
|
|
|
:Ablauf:
|
|
- Adapter wird erzeugt
|
|
- Daten werden angefordert
|
|
|
|
:Erwartetes Ergebnis:
|
|
- Daten sind korrekt
|
|
"""
|
|
from nose.tools import assert_equals
|
|
from .. import Adapter
|
|
|
|
def test_acceptance():
|
|
""" Acceptance Test """
|
|
|
|
adapter = Adapter
|