File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
all-is-cubes-desktop/tests
all-is-cubes-port/src/gltf Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change
1
+ //! Tests which execute the `all-is-cubes` binary.
2
+
1
3
#[ test]
2
4
fn trycmd_tests ( ) {
3
5
let tc = trycmd:: TestCases :: new ( ) ;
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ struct Inner {
44
44
45
45
impl GltfDataDestination {
46
46
#[ cfg( test) ]
47
- pub fn null ( ) -> GltfDataDestination {
47
+ pub ( crate ) fn null ( ) -> GltfDataDestination {
48
48
Self ( Arc :: new ( Inner {
49
49
discard : true ,
50
50
maximum_inline_length : 0 ,
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ pub use generic::*;
14
14
#[ cfg( test) ]
15
15
mod tester;
16
16
#[ cfg( test) ]
17
- pub use tester:: * ;
17
+ pub ( crate ) use tester:: * ;
18
18
19
19
/// A mutation that is to be performed atomically.
20
20
///
You can’t perform that action at this time.
0 commit comments