Skip to content

Commit

Permalink
Adopt cmty convention for module file extensions
Browse files Browse the repository at this point in the history
library module - xqm
main module - xq
  • Loading branch information
joewiz committed May 13, 2023
1 parent 4382633 commit 9a43864
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const existClient = createClient(connectionOptions);

const static = [
"content/*",
"test/xqs/*{.xq,.xql}"
"test/xqs/*{.xq,.xqm}"
]

// test application metadata
Expand Down
4 changes: 2 additions & 2 deletions test/xqs/test-runner.xq
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ xquery version "3.1";
: @see http://www.exist-db.org/exist/apps/doc/xqsuite
:)
import module namespace test="http://exist-db.org/xquery/xqsuite" at "resource:org/exist/xquery/lib/xqsuite/xqsuite.xql";
import module namespace tests="http://exist-db.org/templating/tests" at "test-suite.xql";
import module namespace tests="http://exist-db.org/templating/tests" at "test-suite.xqm";

declare namespace output="http://www.w3.org/2010/xslt-xquery-serialization";
declare option output:method "json";
declare option output:media-type "application/json";

test:suite(
inspect:module-functions(xs:anyURI("test-suite.xql"))
inspect:module-functions(xs:anyURI("test-suite.xqm"))
)
File renamed without changes.

0 comments on commit 9a43864

Please sign in to comment.