Skip to content

Commit

Permalink
[issue-168] introduce a test using auto imported function
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshihiro503 committed Jan 29, 2019
1 parent 8474fa6 commit 59fda9e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
7 changes: 7 additions & 0 deletions test/blackbox-test/test-cases/auto_import.erl
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
-module(auto_import).

-export([foo/1]).

-spec foo(number()) -> number().
foo(X) ->
abs(X).
1 change: 1 addition & 0 deletions test/blackbox-test/test-cases/auto_import.expected
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
done (passed successfully)

0 comments on commit 59fda9e

Please sign in to comment.