Skip to content

Commit

Permalink
Tests support for Genie 5
Browse files Browse the repository at this point in the history
  • Loading branch information
essenciary committed Jun 19, 2022
1 parent 3a512e1 commit acc502e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "SearchLight"
uuid = "340e8cb6-72eb-11e8-37ce-c97ebeb32050"
authors = ["Adrian Salceanu <[email protected]>"]
version = "2.3.1"
version = "2.4.0"

[deps]
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Expand All @@ -21,10 +21,10 @@ YAML = "ddb6d928-2868-570f-bddf-ab3f9cf99eb6"
[compat]
DataFrames = "1"
Inflector = "1"
Intervals = "1.5.0"
JSON3 = "1.9"
Millboard = "0.2"
OrderedCollections = "1"
Reexport = "0.2, 1"
YAML = "0.4"
julia = "1"
Intervals = "1.5.0"
2 changes: 1 addition & 1 deletion src/FileTemplates.jl
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ Default content for a new test file.
"""
function newtest(resource_name::String) :: String
"""
using Test, SearchLight, $(Inflector.to_plural(resource_name) |> uppercasefirst)
using Test, SearchLight, Main.UserApp, Main.UserApp.$(Inflector.to_plural(resource_name) |> uppercasefirst)
@testset "$resource_name unit tests" begin
Expand Down

2 comments on commit acc502e

@essenciary
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/62642

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v2.4.0 -m "<description of version>" acc502e97e0ef3d53454a8b0508e198229ec307b
git push origin v2.4.0

Please sign in to comment.