We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fdfa82 commit 9d6ab8bCopy full SHA for 9d6ab8b
specs/client_spec.py
@@ -1,12 +1,10 @@
1
-from mamba import description, it
2
-from expects import expect, be_none, equal
3
-
4
from amadeus import Client, Location
5
6
-with description('Client') as self:
7
- with it('should exist'):
8
- expect(Client).not_to(be_none)
9
10
- with it('should have helper locations'):
11
- expect(Location).not_to(be_none)
12
- expect(Location.ANY).to(equal('AIRPORT,CITY'))
+def test_client_exists():
+ assert Client is not None
+
+def test_client_has_helper_locations():
+ assert Location is not None
+ assert Location.ANY == 'AIRPORT,CITY'
0 commit comments