-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #201 from bobot/deriver_qualified_name
Add regression tests for qualified type
- Loading branch information
Showing
3 changed files
with
15 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,4 +1,11 @@ | ||
(test | ||
(name test) | ||
(modules test) | ||
(libraries alcotest ppxlib ppx_deriving_qcheck qcheck) | ||
(preprocess (pps ppxlib.metaquot))) | ||
|
||
(test | ||
(name test_qualified_names) | ||
(modules test_qualified_names) | ||
(libraries qcheck) | ||
(preprocess (pps ppx_deriving_qcheck))) |
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,7 @@ | ||
module Q = struct | ||
type t = int | ||
[@@deriving qcheck] | ||
end | ||
|
||
type t = Q.t | ||
[@@deriving qcheck] |