Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rename some tests #34

Merged
merged 1 commit into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module DynObjStaticMethods.Tests
module DynObj.Tests

open System
open System.Collections.Generic
Expand Down Expand Up @@ -736,7 +736,7 @@ let tests_print = testList "Print" [
Expect.isTrue print "Print failed for issue 14"
]

let main = testList "DynObj Static Methods" [
let main = testList "DynObj (Module)" [
tests_ofDict
tests_ofSeq
tests_ofList
Expand Down
4 changes: 2 additions & 2 deletions tests/DynamicObject.Tests/DynamicObject.Tests.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<Compile Include="ReflectionUtils.fs" />
<Compile Include="Inheritance.fs" />
<Compile Include="Interface.fs" />
<Compile Include="InstanceMethods.fs" />
<Compile Include="DynObjStaticMethods.fs" />
<Compile Include="DynamicObjs.fs" />
<Compile Include="DynObj.fs" />
<Compile Include="Main.fs" />
</ItemGroup>

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

open System
open Fable.Pyxpecto
Expand Down Expand Up @@ -533,7 +533,7 @@ let tests_GetHashCode = testList "GetHashCode" [
Expect.equal (a.GetHashCode()) (a2.GetHashCode()) "Values should be equal"
]

let main = testList "Instance Methods" [
let main = testList "DynamicObj (Class)" [
tests_TryGetValue
tests_GetValue

Expand Down
4 changes: 2 additions & 2 deletions tests/DynamicObject.Tests/Main.fs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ open Fable.Pyxpecto

let all = testSequenced <| testList "DynamicObj" [
ReflectionUtils.Tests.main
InstanceMethods.Tests.main
DynObjStaticMethods.Tests.main
DynamicObj.Tests.main
DynObj.Tests.main
Inheritance.Tests.main
Interface.Tests.main
]
Expand Down
Loading