forked from vyperlang/vyper
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ba32160
commit 039e5f4
Showing
1 changed file
with
41 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
def test_import_flag_types(make_input_bundle, get_contract): | ||
lib1 = """ | ||
import lib2 | ||
flag Roles: | ||
ADMIN | ||
USER | ||
enum Roles2: | ||
ADMIN | ||
USER | ||
role: Roles | ||
role2: Roles2 | ||
role3: lib2.Roles3 | ||
""" | ||
lib2 = """ | ||
flag Roles3: | ||
ADMIN | ||
USER | ||
NOBODY | ||
""" | ||
contract = """ | ||
import lib1 | ||
initializes: lib1 | ||
@external | ||
def bar(r: lib1.Roles, r2: lib1.Roles2, r3: lib1.lib2.Roles3) -> bool: | ||
lib1.role = r | ||
lib1.role2 = r2 | ||
lib1.role3 = r3 | ||
assert lib1.role == lib1.Roles.ADMIN | ||
assert lib1.role2 == lib1.Roles2.USER | ||
assert lib1.role3 == lib1.lib2.Roles3.NOBODY | ||
return True | ||
""" | ||
|
||
input_bundle = make_input_bundle({"lib1.vy": lib1, "lib2.vy": lib2}) | ||
c = get_contract(contract, input_bundle=input_bundle) | ||
assert c.bar(1, 2, 4) is True |