From e2140432180425941f5dd659bd0931fca7b2ec24 Mon Sep 17 00:00:00 2001 From: Jechol Lee Date: Fri, 16 Feb 2024 13:23:57 +0900 Subject: [PATCH] chore: Rename test/flow_test to test/flow (#899) --- test/{flow_test => flow}/authorization_test.exs | 2 +- test/{flow_test => flow}/branching_test.exs | 2 +- test/{flow_test => flow}/branching_transaction_mapping_test.exs | 2 +- .../branching_transaction_no_record_test.exs | 2 +- test/{flow_test => flow}/branching_transaction_test.exs | 2 +- test/{flow_test => flow}/flow_composition_test.exs | 2 +- test/{flow_test => flow}/halting_test.exs | 2 +- test/{flow_test => flow}/run_from_action_test.exs | 2 +- test/{flow_test => flow}/simple_flow_test.exs | 2 +- test/{flow_test => flow}/transaction_test.exs | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) rename test/{flow_test => flow}/authorization_test.exs (97%) rename test/{flow_test => flow}/branching_test.exs (97%) rename test/{flow_test => flow}/branching_transaction_mapping_test.exs (95%) rename test/{flow_test => flow}/branching_transaction_no_record_test.exs (95%) rename test/{flow_test => flow}/branching_transaction_test.exs (95%) rename test/{flow_test => flow}/flow_composition_test.exs (97%) rename test/{flow_test => flow}/halting_test.exs (97%) rename test/{flow_test => flow}/run_from_action_test.exs (94%) rename test/{flow_test => flow}/simple_flow_test.exs (98%) rename test/{flow_test => flow}/transaction_test.exs (97%) diff --git a/test/flow_test/authorization_test.exs b/test/flow/authorization_test.exs similarity index 97% rename from test/flow_test/authorization_test.exs rename to test/flow/authorization_test.exs index 2e1a8838..088081f7 100644 --- a/test/flow_test/authorization_test.exs +++ b/test/flow/authorization_test.exs @@ -1,4 +1,4 @@ -defmodule Ash.FlowTest.AuthorizationTest do +defmodule Ash.Flow.AuthorizationTest do use ExUnit.Case defmodule Post do diff --git a/test/flow_test/branching_test.exs b/test/flow/branching_test.exs similarity index 97% rename from test/flow_test/branching_test.exs rename to test/flow/branching_test.exs index 9c21f34c..890dfaa0 100644 --- a/test/flow_test/branching_test.exs +++ b/test/flow/branching_test.exs @@ -1,4 +1,4 @@ -defmodule Ash.FlowTest.BranchingTest do +defmodule Ash.Flow.BranchingTest do @moduledoc false use ExUnit.Case, async: false diff --git a/test/flow_test/branching_transaction_mapping_test.exs b/test/flow/branching_transaction_mapping_test.exs similarity index 95% rename from test/flow_test/branching_transaction_mapping_test.exs rename to test/flow/branching_transaction_mapping_test.exs index 4f8b9778..293db2c1 100644 --- a/test/flow_test/branching_transaction_mapping_test.exs +++ b/test/flow/branching_transaction_mapping_test.exs @@ -1,4 +1,4 @@ -defmodule Ash.FlowTest.BranchingTransactionMappingTest do +defmodule Ash.Flow.BranchingTransactionMappingTest do @moduledoc false use ExUnit.Case, async: false alias Ash.Test.Flow.{Api, Org} diff --git a/test/flow_test/branching_transaction_no_record_test.exs b/test/flow/branching_transaction_no_record_test.exs similarity index 95% rename from test/flow_test/branching_transaction_no_record_test.exs rename to test/flow/branching_transaction_no_record_test.exs index 177b098d..358b5caa 100644 --- a/test/flow_test/branching_transaction_no_record_test.exs +++ b/test/flow/branching_transaction_no_record_test.exs @@ -1,4 +1,4 @@ -defmodule Ash.FlowTest.BranchingTransactionNoRecordTest do +defmodule Ash.Flow.BranchingTransactionNoRecordTest do @moduledoc false use ExUnit.Case, async: false alias Ash.Test.Flow.{Api, Org, User} diff --git a/test/flow_test/branching_transaction_test.exs b/test/flow/branching_transaction_test.exs similarity index 95% rename from test/flow_test/branching_transaction_test.exs rename to test/flow/branching_transaction_test.exs index d7bd2944..49a778a5 100644 --- a/test/flow_test/branching_transaction_test.exs +++ b/test/flow/branching_transaction_test.exs @@ -1,4 +1,4 @@ -defmodule Ash.FlowTest.BranchingTransactionTest do +defmodule Ash.Flow.BranchingTransactionTest do @moduledoc false use ExUnit.Case, async: false alias Ash.Test.Flow.{Api, Org, User} diff --git a/test/flow_test/flow_composition_test.exs b/test/flow/flow_composition_test.exs similarity index 97% rename from test/flow_test/flow_composition_test.exs rename to test/flow/flow_composition_test.exs index c1494a49..b22da8f9 100644 --- a/test/flow_test/flow_composition_test.exs +++ b/test/flow/flow_composition_test.exs @@ -1,4 +1,4 @@ -defmodule Ash.FlowTest.FlowCompositionTest do +defmodule Ash.Flow.FlowCompositionTest do @moduledoc false use ExUnit.Case, async: false diff --git a/test/flow_test/halting_test.exs b/test/flow/halting_test.exs similarity index 97% rename from test/flow_test/halting_test.exs rename to test/flow/halting_test.exs index 4e5c6f71..e00d1d25 100644 --- a/test/flow_test/halting_test.exs +++ b/test/flow/halting_test.exs @@ -1,4 +1,4 @@ -defmodule Ash.FlowTest.HaltingTest do +defmodule Ash.Flow.HaltingTest do @moduledoc false use ExUnit.Case, async: false diff --git a/test/flow_test/run_from_action_test.exs b/test/flow/run_from_action_test.exs similarity index 94% rename from test/flow_test/run_from_action_test.exs rename to test/flow/run_from_action_test.exs index eab0d474..77ec909f 100644 --- a/test/flow_test/run_from_action_test.exs +++ b/test/flow/run_from_action_test.exs @@ -1,4 +1,4 @@ -defmodule Ash.FlowTest.RunFromAction do +defmodule Ash.Flow.RunFromAction do @moduledoc false use ExUnit.Case, async: false diff --git a/test/flow_test/simple_flow_test.exs b/test/flow/simple_flow_test.exs similarity index 98% rename from test/flow_test/simple_flow_test.exs rename to test/flow/simple_flow_test.exs index d012ff52..f096d64e 100644 --- a/test/flow_test/simple_flow_test.exs +++ b/test/flow/simple_flow_test.exs @@ -1,4 +1,4 @@ -defmodule Ash.FlowTest.SimpleFlowTest do +defmodule Ash.Flow.SimpleFlowTest do @moduledoc false use ExUnit.Case, async: false diff --git a/test/flow_test/transaction_test.exs b/test/flow/transaction_test.exs similarity index 97% rename from test/flow_test/transaction_test.exs rename to test/flow/transaction_test.exs index fd68c283..93b0ad79 100644 --- a/test/flow_test/transaction_test.exs +++ b/test/flow/transaction_test.exs @@ -1,4 +1,4 @@ -defmodule Ash.FlowTest.TransactionTest do +defmodule Ash.Flow.TransactionTest do @moduledoc false use ExUnit.Case, async: false