-
Notifications
You must be signed in to change notification settings - Fork 221
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Define __all__ * Use tuple instead of list * Add test
- Loading branch information
1 parent
335eee7
commit 1a23f09
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
def test_all_definition(): | ||
""" | ||
Check that a compiled module defines __all__ with the right value. | ||
These modules have been chosen since they contain messages, services and enums. | ||
""" | ||
import tests.output_betterproto.enum as enum | ||
import tests.output_betterproto.service as service | ||
|
||
assert service.__all__ == ( | ||
"ThingType", | ||
"DoThingRequest", | ||
"DoThingResponse", | ||
"GetThingRequest", | ||
"GetThingResponse", | ||
"TestStub", | ||
"TestBase", | ||
) | ||
assert enum.__all__ == ("Choice", "ArithmeticOperator", "Test") |