Skip to content

Commit

Permalink
add travis to reserved tenants
Browse files Browse the repository at this point in the history
  • Loading branch information
HammamSamara committed May 5, 2021
1 parent 8c6fef8 commit 27503e3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions config/test.exs
Expand Up @@ -10,6 +10,7 @@ config :triplex,
"app",
"staging",
"triplex_test",
"travis",
~r/^db\d+$/
]

Expand Down
2 changes: 1 addition & 1 deletion test/mix/triplex_test.exs
@@ -1,5 +1,5 @@
defmodule Mix.TriplexTest do
use ExUnit.Case, async: false
use ExUnit.Case, async: true

@repos [Triplex.PGTestRepo, Triplex.MSTestRepo]

Expand Down
2 changes: 1 addition & 1 deletion test/triplex/triplex_test.exs
Expand Up @@ -92,7 +92,7 @@ defmodule TriplexTest do
Triplex.create("lili", repo)
Triplex.create("lolo", repo)

assert MapSet.subset?(MapSet.new(["lala", "lili", "lolo"]), MapSet.new(Triplex.all(repo)))
assert MapSet.new(Triplex.all(repo)) == MapSet.new(["lala", "lili", "lolo"])
end
end

Expand Down

0 comments on commit 27503e3

Please sign in to comment.