-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathff_test.mbt
More file actions
39 lines (36 loc) · 1.34 KB
/
ff_test.mbt
File metadata and controls
39 lines (36 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Copyright 2025 International Digital Economy Academy
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
///|
fn build_ok_ff(builder : GilBuilder) -> Gil {
let res : Result[Gil, GilError] = try? builder.build()
match res {
Ok(g) => g
Err(_) => Gil::new_mock(0, update_state=false, default_filters=false)
}
}
///|
test "finish without gamepads returns NoGamepads" {
let g = build_ok_ff(GilBuilder::new().with_mock_gamepad_count(1))
let res : Result[Effect, FfError] = try? EffectBuilder::new().finish(g)
inspect(res is Err(_), content="true")
}
///|
test "mock gamepad is not ff supported" {
let g = build_ok_ff(GilBuilder::new().with_mock_gamepad_count(1))
let res : Result[Effect, FfError] = try? EffectBuilder::new()
.add_gamepad_id(GamepadId::new(0))
.rumble(1.0, 0.0)
.finish(g)
inspect(res is Err(_), content="true")
}