Skip to content

Commit d72954e

Browse files
committed
rename some tests
1 parent f019aba commit d72954e

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

tests/DynamicObject.Tests/DynObjStaticMethods.fs renamed to tests/DynamicObject.Tests/DynObj.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module DynObjStaticMethods.Tests
1+
module DynObj.Tests
22

33
open System
44
open System.Collections.Generic
@@ -736,7 +736,7 @@ let tests_print = testList "Print" [
736736
Expect.isTrue print "Print failed for issue 14"
737737
]
738738

739-
let main = testList "DynObj Static Methods" [
739+
let main = testList "DynObj (Module)" [
740740
tests_ofDict
741741
tests_ofSeq
742742
tests_ofList

tests/DynamicObject.Tests/DynamicObject.Tests.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
<Compile Include="ReflectionUtils.fs" />
1212
<Compile Include="Inheritance.fs" />
1313
<Compile Include="Interface.fs" />
14-
<Compile Include="InstanceMethods.fs" />
15-
<Compile Include="DynObjStaticMethods.fs" />
14+
<Compile Include="DynamicObjs.fs" />
15+
<Compile Include="DynObj.fs" />
1616
<Compile Include="Main.fs" />
1717
</ItemGroup>
1818

tests/DynamicObject.Tests/InstanceMethods.fs renamed to tests/DynamicObject.Tests/DynamicObjs.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module InstanceMethods.Tests
1+
module DynamicObj.Tests
22

33
open System
44
open Fable.Pyxpecto
@@ -533,7 +533,7 @@ let tests_GetHashCode = testList "GetHashCode" [
533533
Expect.equal (a.GetHashCode()) (a2.GetHashCode()) "Values should be equal"
534534
]
535535

536-
let main = testList "Instance Methods" [
536+
let main = testList "DynamicObj (Class)" [
537537
tests_TryGetValue
538538
tests_GetValue
539539

tests/DynamicObject.Tests/Main.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ open Fable.Pyxpecto
44

55
let all = testSequenced <| testList "DynamicObj" [
66
ReflectionUtils.Tests.main
7-
InstanceMethods.Tests.main
8-
DynObjStaticMethods.Tests.main
7+
DynamicObj.Tests.main
8+
DynObj.Tests.main
99
Inheritance.Tests.main
1010
Interface.Tests.main
1111
]

0 commit comments

Comments
 (0)