File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
tests/DynamicObject.Tests Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
- module DynObjStaticMethods .Tests
1
+ module DynObj .Tests
2
2
3
3
open System
4
4
open System.Collections .Generic
@@ -736,7 +736,7 @@ let tests_print = testList "Print" [
736
736
Expect.isTrue print " Print failed for issue 14"
737
737
]
738
738
739
- let main = testList " DynObj Static Methods " [
739
+ let main = testList " DynObj (Module) " [
740
740
tests_ ofDict
741
741
tests_ ofSeq
742
742
tests_ ofList
Original file line number Diff line number Diff line change 11
11
<Compile Include =" ReflectionUtils.fs" />
12
12
<Compile Include =" Inheritance.fs" />
13
13
<Compile Include =" Interface.fs" />
14
- <Compile Include =" InstanceMethods .fs" />
15
- <Compile Include =" DynObjStaticMethods .fs" />
14
+ <Compile Include =" DynamicObjs .fs" />
15
+ <Compile Include =" DynObj .fs" />
16
16
<Compile Include =" Main.fs" />
17
17
</ItemGroup >
18
18
Original file line number Diff line number Diff line change 1
- module InstanceMethods .Tests
1
+ module DynamicObj .Tests
2
2
3
3
open System
4
4
open Fable.Pyxpecto
@@ -533,7 +533,7 @@ let tests_GetHashCode = testList "GetHashCode" [
533
533
Expect.equal ( a.GetHashCode()) ( a2.GetHashCode()) " Values should be equal"
534
534
]
535
535
536
- let main = testList " Instance Methods " [
536
+ let main = testList " DynamicObj (Class) " [
537
537
tests_ TryGetValue
538
538
tests_ GetValue
539
539
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ open Fable.Pyxpecto
4
4
5
5
let all = testSequenced <| testList " DynamicObj" [
6
6
ReflectionUtils.Tests.main
7
- InstanceMethods .Tests.main
8
- DynObjStaticMethods .Tests.main
7
+ DynamicObj .Tests.main
8
+ DynObj .Tests.main
9
9
Inheritance.Tests.main
10
10
Interface.Tests.main
11
11
]
You can’t perform that action at this time.
0 commit comments