Skip to content

Commit

Permalink
save work
Browse files Browse the repository at this point in the history
  • Loading branch information
tbrowder committed May 18, 2024
1 parent 7a2f1c7 commit 420bfca
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 1 deletion.
34 changes: 34 additions & 0 deletions t/data/Foo/META6.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"auth": "zef:tbrowder",
"authors": [
"Tom Browder <[email protected]>"
],
"build-depends": [
],
"depends": [
"JSON::Fast",
"App::Mi6:ver<3.0.5+>",
"Text::Utils",
"File::Find",
"Proc::Easier"
],
"description": "An aid for converting Raku modules to use App::Mi6",
"license": "Artistic-2.0",
"name": "Foo",
"perl": "6.d",
"provides": {
"Foo": "lib/Foo.pm6"
},
"resources": [
"linux.yml",
"macos.yml",
"windows.yml"
],
"source-url": "",
"tags": [
"mi6-helper mi6 fez zef repo"
],
"test-depends": [
],
"version": "0.11.5"
}
1 change: 0 additions & 1 deletion t/data/Foo/lib/Foo.pm6
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
unit class Foo;

use Bar;

8 changes: 8 additions & 0 deletions xt/4-lint.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
use Test;

use lib "./t/data/Foo/lib";
use Foo;

is 1, 1;

done-testing;

0 comments on commit 420bfca

Please sign in to comment.