Skip to content

Commit

Permalink
rename test modules
Browse files Browse the repository at this point in the history
  • Loading branch information
kMutagene committed Dec 17, 2024
1 parent b02c6fc commit 81a36b6
Show file tree
Hide file tree
Showing 18 changed files with 33 additions and 34 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module DynamicObj.Tests.DeepCopyDynamicProperties
module DeepCopyDynamicProperties

open Fable.Pyxpecto
open DynamicObj
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module DynamicObj.Tests.Equals
module Equals

open Fable.Pyxpecto
open DynamicObj
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module DynamicObj.Tests.GetHashCode
module GetHashCode

open Fable.Pyxpecto
open DynamicObj
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module DynamicObj.Tests.GetProperties
module GetProperties

open Fable.Pyxpecto
open DynamicObj
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module DynamicObj.Tests.GetPropertyHelpers
module GetPropertyHelpers

open Fable.Pyxpecto
open DynamicObj
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module DynamicObj.Tests.GetPropertyValue
module GetPropertyValue

open Fable.Pyxpecto
open DynamicObj
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
module DynamicObjs.Tests
module DynamicObj.Tests

open Fable.Pyxpecto
open DynamicObj.Tests

let main = testList "DynamicObj (Class)" [

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module DynamicObj.Tests.RemoveProperty
module RemoveProperty

open Fable.Pyxpecto
open DynamicObj
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module DynamicObj.Tests.SetProperty
module SetProperty

open Fable.Pyxpecto
open DynamicObj
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module DynamicObj.Tests.ShallowCopyDynamicProperties
module ShallowCopyDynamicProperties

open Fable.Pyxpecto
open DynamicObj
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module DynamicObj.Tests.ShallowCopyDynamicPropertiesTo
module ShallowCopyDynamicPropertiesTo

open Fable.Pyxpecto
open DynamicObj
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module DynamicObj.Tests.TryGetDynamicPropertyHelper
module TryGetDynamicPropertyHelper

open Fable.Pyxpecto
open DynamicObj
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module DynamicObj.Tests.TryGetPropertyHelper
module TryGetPropertyHelper

open Fable.Pyxpecto
open DynamicObj
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module DynamicObj.Tests.TryGetPropertyValue
module TryGetPropertyValue

open Fable.Pyxpecto
open DynamicObj
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module DynamicObj.Tests.TryGetStaticPropertyHelper
module TryGetStaticPropertyHelper

open Fable.Pyxpecto
open DynamicObj
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module DynamicObj.Tests.TryGetTypedPropertyValue
module TryGetTypedPropertyValue

open Fable.Pyxpecto
open DynamicObj
Expand Down
32 changes: 16 additions & 16 deletions tests/DynamicObject.Tests/DynamicObject.Tests.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@

<ItemGroup>
<Compile Include="TestUtils.fs" />
<Compile Include="DynamicObjs\RemoveProperty.fs" />
<Compile Include="DynamicObjs\SetProperty.fs" />
<Compile Include="DynamicObjs\GetHashcode.fs" />
<Compile Include="DynamicObjs\Equals.fs" />
<Compile Include="DynamicObjs\GetPropertyValue.fs" />
<Compile Include="DynamicObjs\TryGetPropertyValue.fs" />
<Compile Include="DynamicObjs\TryGetTypedPropertyValue.fs" />
<Compile Include="DynamicObjs\TryGetStaticPropertyHelper.fs" />
<Compile Include="DynamicObjs\TryGetDynamicPropertyHelper.fs" />
<Compile Include="DynamicObjs\TryGetPropertyHelper.fs" />
<Compile Include="DynamicObjs\GetPropertyHelpers.fs" />
<Compile Include="DynamicObjs\GetProperties.fs" />
<Compile Include="DynamicObjs\ShallowCopyDynamicPropertiesTo.fs" />
<Compile Include="DynamicObjs\ShallowCopyDynamicProperties.fs" />
<Compile Include="DynamicObjs\DeepCopyDynamicProperties.fs" />
<Compile Include="DynamicObjs\Main.fs" />
<Compile Include="DynamicObj\RemoveProperty.fs" />
<Compile Include="DynamicObj\SetProperty.fs" />
<Compile Include="DynamicObj\GetHashcode.fs" />
<Compile Include="DynamicObj\Equals.fs" />
<Compile Include="DynamicObj\GetPropertyValue.fs" />
<Compile Include="DynamicObj\TryGetPropertyValue.fs" />
<Compile Include="DynamicObj\TryGetTypedPropertyValue.fs" />
<Compile Include="DynamicObj\TryGetStaticPropertyHelper.fs" />
<Compile Include="DynamicObj\TryGetDynamicPropertyHelper.fs" />
<Compile Include="DynamicObj\TryGetPropertyHelper.fs" />
<Compile Include="DynamicObj\GetPropertyHelpers.fs" />
<Compile Include="DynamicObj\GetProperties.fs" />
<Compile Include="DynamicObj\ShallowCopyDynamicPropertiesTo.fs" />
<Compile Include="DynamicObj\ShallowCopyDynamicProperties.fs" />
<Compile Include="DynamicObj\DeepCopyDynamicProperties.fs" />
<Compile Include="DynamicObj\Main.fs" />
<Compile Include="ReflectionUtils.fs" />
<Compile Include="Inheritance.fs" />
<Compile Include="Interface.fs" />
Expand Down
2 changes: 1 addition & 1 deletion tests/DynamicObject.Tests/Main.fs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ open Fable.Pyxpecto

let all = testSequenced <| testList "DynamicObj" [
ReflectionUtils.Tests.main
DynamicObjs.Tests.main
DynamicObj.Tests.main
DynObj.Tests.main
Inheritance.Tests.main
Interface.Tests.main
Expand Down

0 comments on commit 81a36b6

Please sign in to comment.